inotifywait根据修改的文件类型运行命令

时间:2012-09-11 15:49:38

标签: regex bash inotify watch inotify-tools

我特意尝试同时在2个子目录中观看2种不同的文件类型:

'ps'子目录中的

.coffee文件类型 'css'子目录中的.styl文件类型

我只知道那么多bash而且我正试图让这样的东西发挥作用

while inotifywait --format %w%f ./{css,js}/*.{styl,coffee}; do
  # regex pattern to match the file ending
  # and define it to $ending

  if[ $ending == coffee ]
  then
   coffee -c $file
  elif[ $ending == styl ]
  then
    stylus -c $file
  fi
done



//编辑// 修改了这一行:

while inotifywait --format %w%f ./{css,js}/*.{styl,coffee}; do

所以现在它检查两个文件,但是如果css文件夹上没有.coffee文件,或者js中没有.styl文件,则返回错误,没有找到文件。

另外我注意到当我运行这个脚本时,它会返回/运行以下3次

Setting up watches.
Watches established.
./css/styles.styl

1 个答案:

答案 0 :(得分:3)

不是最干净的解决方案,但有效

#!/bin/sh

while file=$(inotifywait -r -e modify --format "%w%f" ./); do
  EXT=${file##*.}
  if [ $EXT = "styl" ]
  then
    stylus -c $file
  fi
  if [ $EXT = "coffee" ]
  then
    coffee -c $file
  fi
done

如果你有一个更好的解决方案,只能看我想要的文件,那么我就是全部的耳朵