da script a php

da script a php

am 06.09.2007 18:03:09 von Alen192

i have create this simple script i bash that modify the crontab's
user's file with an option passed by standard input, now i would know
if is possible create a similar script with php so i can choose with
radiobutton or check box, the frequency of the command in crontabs
lines.
In case of option=3D1 the cmd is executed every 10 minutes
in case of option=3D2 every 20 minutes
an so far

this is an extract of script
-----------------------------------------------
empty_crontab () {
clear
echo "----------------------------------------------"
/etc/init.d/cron stop
cat /dev/null > /var/spool/cron/crontabs/alessandro
}

cron_restart () {
sleep 2
/etc/init.d/cron restart
/opt/cartel_userinit
}
case $option in

#option prende da 1 a n se =E8 1 */10 minuti, se =E8 2 */20 e cosi via
"1.....n")
svuoto_crontab
echo "*/10 * * * * sudo pon cartellinator" > /var/spool/cron/
crontabs/alessandro
echo "Connessione al server di posta ogni 10 minuti"
cron_restart
;;

esac
---------------------------------
PS: is exists a command to write a file without echo line1 >>file,
echo line2>>file etc.?