| 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?Complete,?saving*file*|*Wrote?CSS?to?*) | |
|
mathias
2018/06/19 12:59:48
As discussed:
Please remove the leading asterisks
| |
| 8 continue | |
|
mathias
2018/06/19 12:59:48
Note: the `continue` instruction is not exactly ne
| |
| 9 ;; | |
| 10 *) | |
| 11 echo "$line" | |
| 12 ;; | |
| 13 esac | |
| 14 done | |
| OLD | NEW |