Pentesting/Linux
간단한 명령어 반복 실행 스크립트
scent2d
2019. 8. 7. 18:01
리눅스 한줄 스크립트
반복 실행하면서 명령어 값을 바뀌는 것을 지켜볼 때 사용한다.
while true;do netstat -antp | grep :80;sleep 1;echo "--------";done