5 lines
145 B
Bash
Executable File
5 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
# Génère un fichier JSON avec l'état des crons
|
|
crontab -l 2>/dev/null > /tmp/crontab_status.txt
|
|
chmod 644 /tmp/crontab_status.txt
|