xfceウィンドウマネージャを備えたシステムfedora 15があります。inotify --formfileディレクティブ
私は遊ぶためにinotifyユーティリティをインストールしました。
作業プロセス中にファイルがどうなるかを制御したい。 私は読むためにフォルダとファイルのリストを読み、無視するのは簡単コマンド
inotifywait --fromfile ~/list.inotify
inotifyを実行するために今日使用するコマンドがあります。 私のリスト(list.inotify)
/home/alex
@/home/alex/Torrnets/
@/home/alex/.pulse-cookie
だから、それは私のホームフォルダを読み込み、急流フォルダと.pulse-クッキーファイルを無視すべきではあります。
トレントも無視されます。しかし、.pulse-cookieファイルは無視されません。
これにはどのような解決策がありますか? (ベースのパターンを使用するための解決策を投稿しないでください、私は絶対パスの付いたファイルの一覧で仕事をしたい無視)あなたは-e
引数を指定しない場合、inotifywait
はIN_ALL_EVENTS
でinotify_add_watch
を呼び出します
$man inotify
@<file>
When watching a directory tree recursively, exclude the specified file from being watched. The file must be specified with a relative or absolute path according to whether a relative or absolute path is given for watched directories. If a specific
path is explicitly both included and excluded, it will always be watched.
Note: If you need to watch a directory or file whose name starts with @, give the absolute path.
--fromfile <file>
Read filenames to watch or exclude from a file, one filename per line. If filenames begin with @ they are excluded as described above. If <file> is `-', filenames are read from standard input. Use this option if you need to watch too many files to
pass in as command line arguments.
申し訳ありませんが、元のポストで更新されたマニュアル見積もりがあります – RusAlex