lambdaphant’s posterous

lambdaphant’s posterous

Michael Matuzak  //  Programmer by day, booze drinking calamari cruncher by night.

Jan 6 / 10:23am

Add all new files to svn with sed, grep, and xargs

$ svn st | grep \? | sed "s/\?//" | xargs svn add $1
Filed under  //  grep   sed   svn  

Comments (1)

Dec 30 / 12:20pm

Sed learning resources

I've found sed really useful lately, but have realized I only use
search and replace. These are some resources that I am going to go
over to better educate myself on awesome sed tricks.
 
http://www.grymoire.com/Unix/Sed.html
http://sed.sourceforge.net/sed1line.txt
http://www.catonmat.net/blog/sed-one-liners-explained-part-one/
Filed under  //  programming   sed  

Comments (0)