Is there an efficient way to monitor multiple directories in sass using a shell script?
This is what I currently have in my 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 method results in 3 separate processes and does not properly exit all of them when Ctrl+C is used to stop.
How can I configure sass to monitor multiple directories and ensure correct termination of the processes?