What is the right way in sass to watch multiple directories from a shell script?
I have following in a shell script:
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
However, this creates 3 processes and when I hit Ctrl+C to stop, not all processes are exited.
How do I get sass to watch multiple directories and exit correctly?