inotifywaitは、ファイルやディレクトリに対してさまざまなことを行います。

inotifywaitは、ファイルやディレクトリに対してさまざまなことを行います。

inotifywait監視ディレクトリに close_write フラグがあることを確認すると、ファイルやフォルダに対して他のタスクを実行するためにスクリプトをインポートしようとしましたが、スキャンが正しく機能しないようです。

私は他のスクリプトでこのタイプのチェックを使用してきましたが、うまくいきますが、inotifywaitまだ理解していないものがあるようです。

現在の形式のスクリプトは次のとおりです。

    #!/bin/bash

    dir1=/sambashares

    while true; do
     inotifywait -r -e close_write "$dir1" | while read f; do
      #debug
      echo $f
      #Is it a directory?
      if [[ -d "${f}" ]]; then
       #debug
       echo "New directory called ${f} detected"
       chown -R jake:jake $f
       chmod -R 775 $f
       cp -R $f /media/lacie/Film
      fi
      #Is it a file?
      if [[ -f "${f}" ]]; then 
      #debug
      echo "New file called ${f} detected"
      chown jake:jake $f
      chmod 775 $f
      cp $f /media/lacie/Film
      fi

     done
    done

何が起こっているのかを確認するために端末でこれを実行すると、私が得るものはclose_writeが検出されたという確認と「set watch」が続きます。他のメッセージや他のコードはトリガーされず、直接デバッグエコーも発生しません。従業員:

 while read f; do

:-(

Ubuntu Server 12.04 LTS 64ビットで実行しています。

$ bash --version
GNU bash, version 4.2.25(1)-release (x86_64-pc-linux-gnu)

$ dpkg -l | grep inotify
ii  inotify-tools                    3.13-3
ii  libinotifytools0                 3.13-3
ii  python-pyinotify                 0.9.2-1

$ python --version
Python 2.7.3

答え1

以下は私にとって効果的でした。

はい

inotifywait独自の方法と同様の方法を使用する例を以下に示します。

$ inotifywait -r -e close_write "somedir" | while read f; do echo "$f hi";done
Setting up watches.  Beware: since -r was given, this may take a while!
Watches established.    

その後、ディレクトリに移動してsomedirファイルをタッチすると、ウィンドウで次のことが起こりますtouch afileinotifywait

somedir/ CLOSE_WRITE,CLOSE afile hi

メモ:すべての出力を取得するには、inotifywait例を少し変更するだけです。

$ inotifywait -r -e close_write "somedir" 2>&1 | \
    while read f; do echo "$f | hi";done
Setting up watches.  Beware: since -r was given, this may take a while! | hi
Watches established. | hi

コマンドを使用してファイルをもう一度タッチすると、touch afileイベントが表示されます。

somedir/ CLOSE_WRITE,CLOSE afile | hi

これを使用する方法を示す別の例については、inotifywaitこのQ&Aに対する回答で私が示した例をご覧ください。ファイルがサイズ制限に達すると自動的に検出

あなたの問題

私の考えであなたが経験している問題のいくつかは、返された出力がファイル名にすぎないとinotifywait仮定していますが、上記の例では明らかにそうではありません。

したがって、次のif文は決して成功しません。

  if [[ -d "${f}" ]]; then

and

  if [[ -f "${f}" ]]; then 

これらのBashスクリプトを開発するときは、上部の次のコマンドでデバッグメッセージを有効にすることが役に立つことがよくあります。

set -x

次の方法で無効にできます。

set +x

このメッセージを使用して、コードセクションをラップしてオンまたはオフにすることができます。

set -x
...code...
set +x

答え2

情報を提供してくれたslmに感謝して働くようになりました:-)

#!/bin/bash

# Written by Jan Duprez and licensed as
# do whatever you want with this but don't come whining
# if you somehow manage to trash your system with it.
# You pressed the buttons, remember?

# This script uses inotifywait to watch a directory and copies
# files or directories moved into it to another folder.

# The commandline parameters are:
# 1 - Directory to watch
# 2 - Directory where new file/folder is copied to
# 3 - UID to use to chmod the file/folder in BOTH dirs
# 4 - GID to use to chmod the file/folder in BOTH dirs
# 5 - permissions to set for the new file/folder in BOTH dirs

dir1=$1
dir2=$2
user=$3
group=$4
perms=$5

# Check if commandline parameters are all there, show reminder if not
if [[ -z $dir1 || -z $dir2 || -z $user || -z $group || -z $perms ]];
then    
    echo -e "Please provide a source dir as 1st parameter"
            echo -e "Please provide a dest dir as 2nd parameter"
            echo -e "Please provide a UID as 3rd parameter"
            echo -e "Please provide a GID as 4th parameter"
            echo -e "Please provide a file permission string (ex 755) as 5th parameter"
    exit
fi

# Good to go, start watching
while true; do

#add -e close_write and -e create for testing
inotifywait -r -e move "$dir1" | while read f; do

#Get part after inotify triggers with awk, remove leading spaces with sed
new=`echo $f | awk '{$1=$2=""; print $0}' | sed 's/^ *//'`
#And the preconstruded full path to avoid ugly buggery between the  [[ ]]    test
test=$dir1$new

    if [[ -d "${test}" ]] ; then
    chown -R $user:$group "$dir1$new"
    chmod -R $perms "$dir1$new"
    cp -R "$dir1$new" "$dir2"
    chown -R $user:$group "$dir2$new"
    fi

    if [[ -f "${test}" ]] ; then
    chown $user:$group "$dir1$new"
    chmod $perms "$dir1$new"
    cp "$dir1$new" "$dir2"
    chown $user:$group "$dir2$new"
    fi
done
done

関連情報