OLD | NEW |
(Empty) | |
| 1 #!/bin/sh |
| 2 ######################################################################## |
| 3 ######################################################################## |
| 4 ## The cause of this script is to make the output of the ## |
| 5 ## node-sass script more readable by filtering all repeated lines ## |
| 6 ######################################################################## |
| 7 ######################################################################## |
| 8 |
| 9 while IFS= read -r line; do |
| 10 if echo "$line" | grep -q -v "Rendering" && |
| 11 echo "$line" | grep -q -v "Wrote" |
| 12 then |
| 13 echo $line |
| 14 fi |
| 15 done |
OLD | NEW |