3
inotifywait를 사용하여 특정 확장자의 파일 작성을위한 디렉토리를 감시하는 방법
나는 이 대답 을 보았다 . 예를 들어, inotifywait 사용을 고려해야합니다. inotifywait -m /path -e create -e moved_to | while read path action file; do echo "The file '$file' appeared in directory '$path' via '$action'" # do something with the file done 내 질문은 위의 스크립트는 모든 유형의 파일 생성을위한 …