crontab -l
crontab -e
*/1 * * * * ls >> /tmp/ls.txt
sudo /etc/init.d/cron restart
example:
1.*/1 * * * * /etc/cron_config.sh
2.
in cron_config.sh
#!/bin/sh
cd /opt/lampp/htdocs/test/upload
/opt/lampp/bin/php hup.php
crontab -e
*/1 * * * * ls >> /tmp/ls.txt
sudo /etc/init.d/cron restart
example:
1.*/1 * * * * /etc/cron_config.sh
2.
in cron_config.sh
#!/bin/sh
cd /opt/lampp/htdocs/test/upload
/opt/lampp/bin/php hup.php