| Index: edit.sh |
| diff --git a/edit.sh b/edit.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..7f529d83e58ca146e510da63064f14e69cf03e1d |
| --- /dev/null |
| +++ b/edit.sh |
| @@ -0,0 +1,13 @@ |
| +#!/bin/sh |
| + |
| +# Filter out uninformative output lines from the node-sass cron job script |
| + |
| +while read line; do |
| + case "$line" in |
| + Rendering\ Complete,\ saving*file*|Wrote\ CSS\ to*) |
| + ;; |
| + *) |
| + echo "$line" |
| + ;; |
| + esac |
| +done |