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

Unified Diff: edit.sh

Issue 29761555: #8852 - ldap sync output filter (Closed)
Patch Set: #8852 - ldap sync output filter Created May 22, 2018, 10:08 a.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 | output.txt » ('j') | 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..59b2c4c8a247c2c627726001cc997773ae02e487
--- /dev/null
+++ b/edit.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# Filtering out repeated lines from LDAP sync cron job output
+
+output=`cat /dev/stdin | grep -v '#' | grep -v 'Synchronizing' | grep -v 'Found' | grep -B 1 -e '->'`
+
+echo $output | cut -b3- | sed 's/-[->]/\n/g'
« no previous file with comments | « no previous file | output.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld