Content:Grep, Sed, and Awk: Difference between revisions
Jump to navigation
Jump to search
New page: More content about the commands will be coming soon. For now, here's the three "simple" commands Sam and Kay ran: <pre> grep -d recurse "header.html" . | grep -v barndoor | awk '{print $... |
No edit summary |
||
| Line 1: | Line 1: | ||
More content about the commands will be coming soon. For now, here's the three "simple" commands | More content about the commands will be coming soon. For now, here's the three "simple" commands we ran: | ||
<pre> | <pre> | ||
Revision as of 20:28, 8 April 2009
More content about the commands will be coming soon. For now, here's the three "simple" commands we ran:
grep -d recurse "header.html" . | grep -v barndoor | awk '{print $1}' | cut -d: -f1
for x in `cat ~/tmp/filesincludingheader`; do cat $x | sed "s;\.*/*header\.html;/includes/header.html;g" >> $x.newApr8; done
for x in `cat ~/tmp/filesincludingheader`; do mv $x.newApr8 $x; done