Main Topics
Browse All Topics1)I would like, and very much appreciate, some recommendations on online resources for learning awk, sed and Perl.
2)I would appreciate any recommendations on which one is better, awk or sed.
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You should learn how to google effectively.
Perl:
1) http://perldoc.perl.org/ <--great resource
2) http://www.cs.cf.ac.uk/Dav
3) http://docs.rinet.ru/Perl5
Awk/Sed:
1) http://www.unix.org.ua/ore
2) http://www.gnu.org/softwar
IMO, awk does the job of grep/sed/cut/, and so i would recommend learning awk and get proficient with it.
Below are some online resources. As for which is better, it probably depends on what you need to accomplish. For instance, my only experience with awk and sed is homework as a student. One of our homework assignments had both an awk and sed solution. Both solutions worked, but the sed solution was one line of code, awk had several lines of code.
My first impressions of them are similar to the opinion of this hyperlink: http://www.faqs.org/docs/a
sed is is text file editor (non-interactive)
awk is a field-oriented pattern processing language
awk:
http://www.oracle.com/tech
sed:
http://www.oracle.com/tech
One liners for awk:
http://www.student.northpa
Good luck
The master perl site is CPAN (comprehensive perl archive network) http://cpan.org
From there, you quickly get to http://perldoc.perl.org/in
The linux awk man page is a comprehensive document telling you how to write awk scripts - rather unusual for a man page
Business Accounts
Answer for Membership
by: ozoPosted on 2007-11-10 at 22:10:39ID: 20258232
perldoc -q book
man awk
man sed
awk can do more than sed
sed can be quicker for simple jobs, but when your task doesn't quite fit the paradigm, it can be harder to coerce it into sed comnmands