Handbook of Text manipulation on Unix
1–10 of 25 posts
Re: Handbook of Text manipulation on Unix
#2Thanks for this! I really like these kinds of summaries, because while I love grep and cut and wc and perl, there are commands in here I really haven't heard of.
Plus I enjoy stringing together one-off filters longer than my arm.
Re: Handbook of Text manipulation on Unix
#3One useful addition to the section on streams would have been that of process substitution:
http://tldp.org/LDP/abs/html/process-sub.html
This allows you to have more than just the standard streams.
Re: Handbook of Text manipulation on Unix
#4Related to this, pyp is worth taking a look at if you're interested in doing manipulation using python's libraries, but on the command line:
Re: Handbook of Text manipulation on Unix
#5Unix for Poets is a great set of exercises for someone wanting to learn more about text manipulation with Unix tools.
http://www.iro.umontreal.ca/~felipe/IFT6010-Automne2011/reso...
Re: Handbook of Text manipulation on Unix
#6Also take a look at my 3 e-books on awk, sed and perl:
http://www.catonmat.net/books/
Re: Handbook of Text manipulation on Unix
#7[deleted]
Re: Handbook of Text manipulation on Unix
#8So sad that the writer lets himself down in the first line.
Re: Handbook of Text manipulation on Unix
#9join was new to me.
I like it....
Always happy to learn a new command.
Re: Handbook of Text manipulation on Unix
#10I like how it's laid out from the most specific tools that are easy to understand and eventually leads to the pocketknives of sed and awk that beginners might not need until they've exhausted the potential of the previous commands.