ディレクトリを監視し、リアルタイムで変化するファイルの名前を吐き出すCLIツールを探しています。
some_watch_command /path/to/some/folder | xargs some_callback
私はinotify
(inotify-tools
?)そしてそれは私が必要としているもののようですが、Linux(私の場合はUbuntu)とOSXの両方に対応したものが必要です。
非常に高速である必要はありませんが、変更時にトリガーする必要があります(1秒以内が妥当です)。また、上記の正確なCLIプログラムは必ずしも必要ではありません。基盤となる技術がいくつか存在し、両方のプラットフォームで簡単にスクリプト化できる場合は、それも素晴らしいことです。
OS Xは通常、このタスクにフォルダアクションまたはLaunchedを使用します。
私が知っている唯一のクロスプラットフォームツールは watchdog API for Python(したがって、OS XとLinuxで利用可能)です。pip
(またはeasy_install
)
pip install watchdog
watchmedo
コマンドラインツールが付属しており、システムイベントでシェルコマンドを実行できます。 watchmedo --help
で一般的な構文を確認してください
これは短い例で、太字で強調表示されているコマンドとパスを簡単に変更できます。
watchmedoシェルコマンド\ -recursive\ -command = 'エコー "$ {watch_src_path}"'\ / some/folder
これにより、変更されたすべてのファイルまたはフォルダーへのパスが吐き出され、watchmedo
の出力を別のシェルコマンドにパイプできるようになります。
私はあなたが探しているものを正確に実行するために出くわしたいくつかのRubyスクリプトを微調整しました。これがRubyコードです:
#!/usr/bin/Ruby
# Inspired by http://vikhyat.net/code/snippets/#watchfile
# How to use:
# This script takes two paramaters: a folder and a Shell command
# The script watches for when files in the folder are changed. When they are, the Shell command executes
# Here are some shortcuts you can put in the Shell script:
# %F = filename (with extension)
# %B = base filename (without extension)
unless ARGV.length == 2
puts "\e[32m Usage: \e[0mruby OnSaveFolder.rb 'folder' 'command'"
exit
end
require 'digest/md5'
require 'ftools'
$md5 = ''
$directory = File.expand_path(ARGV[0])
$contents = `ls #{$directory}`
$contentsList = $contents.split("\n")
$fileList = []
Dir.chdir($directory)
for i in $contentsList
if ( File.file?(File.expand_path(i)) == true)
$fileList.Push(i)
end
end
$processes = []
def watch(file, timeout, &cb)
$md5 = Digest::MD5.hexdigest(File.read(file))
loop do
sleep timeout
if ( temp = Digest::MD5.hexdigest(File.read(file)) ) != $md5
$md5 = temp
cb.call(file)
end
end
end
puts "\e[31m Watching files in folder \e[34m #{$directory}"
puts "\e[32m Press Control+C to stop \e[0m"
for i in $fileList
pid = fork do
$num = 0
$filePath = File.expand_path(i)
watch i, 1 do |file|
puts "\n #{i} saved"
$command = ARGV[1].dup
if ( ARGV[1].include?('%F') )
$command = $command.gsub!('%F', i)
end
if ( ARGV[1].include?('%B') )
$command = $command.gsub!('%B', File.basename(i, '.*'))
end
$output = `#{$command}`
if ( $output != '')
puts "\e[34m #{$command}\e[31m output: \e[0m"
puts $output
end
puts "\e[34m #{$command}\e[31m finished \e[0m (#{$num}, #{Time.now})\n"
$num += 1
end
end
$processes.Push(pid)
end
Process.wait(pid)
for i in $processes
`kill #{i}`
end
このスクリプトに「OnSaveFolder.rb」という名前を付けました。これには、変更を監視するフォルダーと、変更があったときに実行するbashコードの2つのパラメーターが必要です。例えば、
Ruby OnSaveFolder.rb '/home/Movies' 'echo "A movie has been changed!"'
これがお役に立てば幸いです。 Rubyはこのタイプのものに非常にうまく機能し、デフォルトでOSXにインストールされていることがわかりました。
lsof
をwatch
コマンドに入れて、<s>
秒ごとに更新することができます。
watch -n <s> lsof
pid1、pid2、pid3を監視し、pid4を無視するなど、任意のフィルターを使用して起動します。
lsof -p "pid1,pid2,pid3,^pid4"
それだけでは不十分な場合は、いつでもgrepを使用して独自のフィルターを作成できます。
OS Xについては、これを参照してください 質問 の回答。
entr いいですね。このように、見たいファイルを正確にフィルタリングできます。
find . -name '*.py' | entr python runTests.py
ディレクトリ内の特定のファイルのみを監視する場合は、find
コマンドを作成して、監視するファイルのみを返すようにすることができます。
fswatch
よりも設定が簡単だと思います。