GNU/Linux >> Linux の 問題 >  >> Linux

OS X と Ubuntu でファイルシステムをリアルタイムで見る

OS X は通常 Folder Actions を使用します または起動

私が知っている唯一のクロスプラットフォーム ツールは、Python 用のウォッチドッグ API です (したがって、OS X と Linux で利用できます)。 pip からインストールします (または easy_install )

pip install watchdog

watchmedo が付属しています コマンド ライン ツール。システム イベントでシェル コマンドを実行できます。 watchmedo --help で一般的な構文を確認してください

コマンドと太字で強調表示されたパスを簡単に変更できる短い例を次に示します。

watchmedo shell-command \
    --recursive \
    --command='echo "${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 コードです。たとえば、

ruby OnSaveFolder.rb '/home/Movies' 'echo "A movie has been changed!"'

これが役立つことを願っています! Ruby はこの種の処理に非常に適していることがわかりました。Ruby はデフォルトで OS X にインストールされています。


lsof を入れることができます watch に コマンドを実行し、<s> ごとに更新します 秒:

watch -n <s> lsof

pid1、pid2、pid3 を監視し、pid4 を無視するなど、任意のフィルターでそれを起動します

lsof -p "pid1,pid2,pid3,^pid4"

それでも十分でない場合は、いつでも grep を使用して独自のフィルターを作成できます。

OS X については、この質問の回答を参照してください。


Linux
  1. Stdoutに出力し、同時にGrepをファイルに出力しますか?

  2. Ubuntuでスワップファイルを作成および削除する

  3. ファイルが変更された場合のリアルタイムバックアップ?

  1. Linuxリアルタイムシナリオとそのソリューションの問題

  2. 分散ファイルシステムとクラスターファイルシステムの違いは?

  3. ubuntu 12.04でファイルアクセス時間が更新されない

  1. ファイルを作成してファイルシステムとしてマウントする方法は?

  2. Ubuntu20.04およびDebian10でApache仮想ホストをセットアップします

  3. Ubuntu VM 読み取り専用ファイル システムの修正?