Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/sh | |
2 | |
3 # Filter out uninformative output lines from the node-sass cron job script | |
4 | |
5 while read line; do | |
6 case "$line" in | |
7 *Rendering*|*Wrote*) | |
mathias
2018/06/11 14:04:14
Can't you make these patterns more specific, in or
| |
8 continue | |
9 ;; | |
10 *) | |
11 echo "$line" | |
12 ;; | |
13 esac | |
14 done | |
OLD | NEW |