| Index: edit.sh |
| diff --git a/edit.sh b/edit.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..7dcb246cc3bd79034749d3c896c57771b619f1cc |
| --- /dev/null |
| +++ b/edit.sh |
| @@ -0,0 +1,14 @@ |
| +#!/bin/sh |
| + |
| +# Filter out uninformative output lines from the node-sass cron job script |
| + |
| +while read line; do |
| + case "$line" in |
| + *Rendering*|*Wrote*) |
|
mathias
2018/06/11 14:04:14
Can't you make these patterns more specific, in or
|
| + continue |
| + ;; |
| + *) |
| + echo "$line" |
| + ;; |
| + esac |
| +done |