OS
[리눅스] crontab 사이트 호출
꼬장e
2019. 10. 11. 09:57
콘솔에서 호출
/usr/bin/lynx --source http://aaa.com/test.php
2. wget을 이용하는방법
/usr/bin/wget http://aaa.com/test.php
crontab 등록시
방법1)
* * * * * root /usr/bin/lynx --source /usr/bin/wget http://aaa.com/test.php
방법2)
* * * * * root /usr/bin/wget /usr/bin/wget http://aaa.com/test.php
출처 : https://m.blog.naver.com/PostList.nhn?blogId=peter912