📁 File Manager Pro
v10.0.3 | PHP: 7.4.15
Server: Apache/2.4.25 (Debian)
2026-07-01 20:25:33
📂
/ (Root)
/
etc
/
cron.daily
📍 /etc/cron.daily
🔄 Refresh
✏️
Editing: passwd
Read Only
#!/bin/sh cd /var/backups || exit 0 for FILE in passwd group shadow gshadow; do test -f /etc/$FILE || continue cmp -s $FILE.bak /etc/$FILE && continue cp -p /etc/$FILE $FILE.bak && chmod 600 $FILE.bak done
💾 Save Changes
❌ Cancel