Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: edit.sh

Issue 29781555: #10639 - node-sass output filter (Closed)
Patch Set: Created May 14, 2018, 2:12 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: edit.sh
diff --git a/edit.sh b/edit.sh
new file mode 100755
index 0000000000000000000000000000000000000000..aa0f640330dc4b7af8adeb1e5c562054c6e8cb60
--- /dev/null
+++ b/edit.sh
@@ -0,0 +1,33 @@
+#!/bin/sh
+#####################################################################
+#####################################################################
+## The cause of this script is to make the output of the LDAP ##
+## sync cron job more readable by filtering all repeated lines ##
+#####################################################################
+#####################################################################
+
+last_updated=""
+
+while IFS= read -r line; do
+ if echo "$line" | grep -q "Updating" ||
+ echo "$line" | grep -q "Creating"
+ then
+ last_updated="$line"
+ fi
+
+ if echo "$line" | grep -q -v "Updating" &&
+ echo "$line" | grep -q -v "Creating" &&
+ echo "$line" | grep -q -v "Found" &&
+ echo "$line" | grep -q -v "#" &&
+ echo "$line" | grep -q -v "Synchronizing" &&
+ echo "$line" | grep -q -v -F -e "->"
+ then
+ echo $line
+ fi
+
+ if echo "$line" | grep -q -F -e "->"
+ then
+ echo $last_updated
+ echo $line
+ fi
+done
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld