%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/webmin/cron/ |
Upload File : |
#!/usr/bin/perl # cron_editor.pl # Called by crontab -e to edit an users cron table.. sleep(1); # This is needed because the stupid crontab -e command # checks the mtime before and after editing, and if they are # the same it assumes no change has been made!! open(SRC, "<".$ENV{"CRON_EDITOR_COPY"}); open(DST, ">".$ARGV[0]) || die "Failed to open $ARGV[0] : $!"; while(<SRC>) { if (!/^#.*DO NOT EDIT/i && !/^#.*installed on/i && !/^#.*Cron version/i) { (print DST $_) || die "Failed to write to $ARGV[0] : $!"; } } close(SRC); close(DST) || die "Failed to write to $ARGV[0] : $!";