da script a php

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alen192

    da script a php

    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=1 the cmd is executed every 10 minutes
    in case of option=2 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 è 1 */10 minuti, se è 2 */20 e cosi via
    "1.....n")
    svuoto_crontab
    echo "*/10 * * * * sudo pon cartellinator" /var/spool/cron/
    crontabs/alessandro
    echo "Connession e 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.?

Working...