骚扰看多个目录

sass从shell脚本监视多个目录的正确方法是什么?

我在shell脚本中有以下内容:

sass --style compressed --watch branches/mysite/assets/css/sass:branches/mysite/assets/css &
sass --style compressed --watch branches/mysite2/themes/css/sass:branches/mysite2/themes/css &
sass --style compressed --watch trunk/assets/css/sass:trunk/assets/css

但是,这将创建3个进程,当我按Ctrl + C停止时,并非所有进程都退出。

如何使Sass监视多个目录并正确退出?

Stafan路易2020/03/23 20:05:02

我希望您已经尝试过,但是您可以将所有文件夹添加到一个命令行中:

sass --watch path/to/sass1:path/to/css1 path/to/sass2:path/to/css2 path/to/sass3:path/to/css3