在一個shell腳本,我想等待一個特定的文件出現 inotifywait -m -r -q -e close_write -e moved_to --format '%w/%f' $ARCHIVE_ROOT | while read FILE; do
# Call other programs which process the file like stat or sha1sum
done
我想在一個bash腳本中使用inotifywait來監視一個文件的目錄中有一個特定的標記(* SDS.csv)。 我也只想執行一次(當文件寫入目錄數據時一次)。 例如: #! /bin/bash
inotifywait -m -e /home/adam/data | while read LINE
do
if [[ $LINE == *SDS.csv ]]; then
./