1
vim과 함께 inotifywait 사용
변경 사항을 파일을 모니터링하고 원격 복사로 rsync하는 간단한 스크립트가 있습니다. #!/bin/bash while inotifywait -e close_write somefile do rsync somefile user@host.domain:./somefile done nano에서는 잘 작동하지만 vim에서는 실패합니다. 나노를 사용하면 다음과 같이 출력됩니다. somefile CLOSE_WRITE,CLOSE 다른 판을 기다리는 다음 루프를 시작합니다. vim을 사용하면 출력이 없으며 스크립트는 종료 코드 0으로 닫힙니다. 나는 약간의 …