| Index: edit.sh |
| diff --git a/edit.sh b/edit.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..07576b4cd9f1c568c161950f543609d1e1e3d785 |
| --- /dev/null |
| +++ b/edit.sh |
| @@ -0,0 +1,15 @@ |
| +#!/bin/sh |
| +######################################################################## |
| +######################################################################## |
| +## The cause of this script is to make the output of the ## |
| +## node-sass script more readable by filtering all repeated lines ## |
| +######################################################################## |
| +######################################################################## |
| + |
| +while IFS= read -r line; do |
| + if echo "$line" | grep -q -v "Rendering" && |
| + echo "$line" | grep -q -v "Wrote" |
| + then |
| + echo $line |
| + fi |
| +done |