vote up 9 vote down star
8

Hello,

just want to know what are the main differences among them? and the power of each language (where it's better to use it).

Edit: it's not "vs." like topic, just information.

flag

67% accept rate

3 Answers

vote up 47 vote down check

In order of appearance, the languages are sed, awk, perl, python.

The sed program is a stream editor, and is designed to apply the actions from a script to each line (or, more generally, to specified ranges of lines) of the input file or files. Its language is based on ed, the Unix editor, and although it has conditionals and so on, it is hard to work with for complex tasks. You can work minor miracles with it - but at a cost to the hair on your head. However, it is probably the fastest of the programs when attempting tasks within its remit. (It has the least powerful regular expressions of the programs discussed - adequate for many purposes, but certainly not PCRE - Perl-Compatible Regular Expressions)

The awk program (name from the initials of its authors - Aho, Weinberger and Kernighan) is a tool originally for formatting reports. It can be used as a souped up sed; in its more recent versions, it is computationally complete. It uses an interesting idea - the program is based on 'patterns matched' and 'actions taken when the pattern matches'. The patterns are fairly powerful (Extended Regular Expressions). The language for the actions is similar to C. One of the key features of awk is that it splits the input lines into fields automatically.

Perl was written in part as an awk-killer and sed-killer. Two of the programs provided with it are a2p and s2p for converting awk scripts and sed scripts into Perl. Perl is one of the earliest of the next generation of scripting languages (Tcl/Tk can probably claim primacy). It has powerful integrated regular expression handling with a vastly more powerful language. It provides access to almost all system calls, and has the extensibility of the CPAN modules. (Neither awk nor sed is extensible.) One of Perl's mottos is "TMTOWTDI - There's more than one way to do it" (pronounced "tim-toady"). Perl has 'objects', but it is more of an add-on than a fundamental part of the language.

Python was written last, and probably in part as a reaction to Perl. It has some interesting syntactic ideas (indenting to indicate levels - no braces or equivalents). It is more fundamentally object-oriented than Perl; it is just as extensible as Perl.

OK - when to use each?

  • sed - when you need to do simple text transforms on files.
  • awk - when you only need simple formatting and summarization or transformation of data.
  • perl - for almost any task, but especially when the task needs complex regular expressions.
  • python - for the same tasks that you could use Perl for.

I'm not aware of anything that Perl can do that Python can't, nor vice versa. The choice between the two would depend on other factors. I learned Perl before there was a Python, so I tend to use it. Python has less accreted syntax and is generally somewhat simpler to learn. Perl 6, when it becomes available, will be a fascinating development.

(Note that the 'overviews' of Perl and Python, in particular, are woefully incomplete; whole books could be written on the topic.)

link|flag
A++++ post, would read again! – Robert Gamble Dec 14 '08 at 21:38
awesome especially "when to use each" part – Khaled Al Hourani Dec 14 '08 at 21:45
I don't think Python was a reaction to Perl. My understanding is that it started life as a scripting language for Amoeba (a unix-ish research O/S) and was pretty much independent. – ConcernedOfTunbridgeWells Dec 14 '08 at 23:29
I agree with NXC, aside from regular expressions there is little similarity between Python and Perl and nothing I have seen to suggest any real relation, inspiration, etc. I see a much closer connection between Ruby and Perl than Python and Perl. – Robert Gamble Dec 14 '08 at 23:49
@NXC and Robert Gamble: my intention was to indicate that Python was independent of Perl. I'm not sure how much Guido van Rossum knew about Perl as he was designing Python, but perhaps there's a case for saying that where there were two choices and Perl had taken option A, then Python took option B. – Jonathan Leffler Dec 15 '08 at 3:51
vote up 9 vote down

I wouldn't call sed a fully-fledged programming language, it is a stream editor with language constructs aimed at editing text files programmatically.

Awk is a little more of a general purpose language but it is still best suited for text processing.

Perl and Python are fully fledged, general purpose programming languages. Perl has its roots in text processing and has a number of awk-like constructs (there is even an awk-to-perl script floating around on the net). There are many differences between Perl and Python, your best bet is probably to read the summaries of both languages on something like Wikipedia to get a good grasp on what they are.

link|flag
I've seen a sed implementation of Sokoban, which would imply Turing Completeness. However, that can also be said of sendmail.cf and TeX. – ConcernedOfTunbridgeWells Dec 14 '08 at 23:30
1  
I worked with a guy once who wrote PostScript to turn a laser printer into a router. – Sam Kington Dec 15 '08 at 4:09
vote up 6 vote down

First, there are two unrelated things in the list "Perl, Python awk and sed".

Thing 1 - simplistic text manipulation tools.

  • sed. It has a fixed, relatively simple scope of work defined by the idea of reading and examining each line of a file. sed is not designed to be particularly readable. It is designed to be very small and very efficient on very tiny unix servers.

  • awk. It has a slightly less fixed, less simple scope of work. However, the main loop of an awk program is defined by the implicit reading of lines of a source file.

These are not "complete" programming languages. While you can -- with some work -- write fairly sophisticated programs in awk, it rapidly gets complicated and difficult to read.

Thing 2 - general-purposes programming languages. These have a rich variety of statement types, numerous built-in data structures, and no wired-in assumptions or shortcuts to speak of.

  • Perl.

  • Python.

When to use them.

  • sed. Never. It really doesn't have any value in the modern era of computers with more than 32K of memory. Perl or Python do the same things more clearly.

  • awk. Never. Like sed, it reflects an earlier era of computing. Rather than maintain this language (in addition to all the other required for a successful system), it's more pleasant to simply do everything in one pleasant language.

  • Perl. Any programming problem of any kind. If you like free-thinking syntax, where there are many, many ways to do the same thing, perl is fun.

  • Python. Any programming problem of any kind. If you like fairly limited syntax, where there are fewer choices, less subtlety, and (perhaps) more clarity. Python's object-oriented nature makes it more suitable for large, complex problems.

Background -- I'm not bashing sed and awk out of ignorance. I learned awk over 20 years ago. Did many things with it; used to teach it as a core unix skill. I learned Perl about 15 years ago. Did many sophisticated things with it. I've left both behind because I can do the same things in Python -- and it is simpler and more clear.

There are two serious problems with sed and awk, neither of which are their age.

  1. The incompleteness of their implementation. Everything sed and awk do can be done in Python or Perl, often more simply and sometimes faster, too. A shell pipeline has some performance advantages because of its multi-processing. Python offers a subprocess module to allow me to recover those advantages.

  2. The need to learn yet another language. By doing things in Python (or Perl) your implementation depends on fewer languages, with a resulting increase in clarity.

link|flag
Some pretty fatuous arguments against awk/sed. The adjustable wrench has not supplanted the open spanner for the same reason sed and awk still ship. Sometimes the simple tool is the best for the job. I write a lot of perl, but for a simple chain of piped commands, awk/sed are quicker than perl -e – RET Dec 14 '08 at 23:19
You can't assume availability of anything but sh, sed and awk on most non-linux unix systems. If you want something to work on an out-of-the-box Solaris, HP/UX or AIX install, you're stuck with sed and awk. – ConcernedOfTunbridgeWells Dec 14 '08 at 23:32
@NXC: not really. Perl and Python are available from the vendors. For example, see www-03.ibm.com/systems/p/os/aix/linux – S.Lott Dec 14 '08 at 23:59
@RET: "for a simple chain of piped commands" -- sometimes it's quicker to replace the pipe with a simple Python program. – S.Lott Dec 15 '08 at 0:41
@RET: Tried to provide my justification -- been using awk and perl for decades -- I'm not sure what more I can provide for evidence other than my experience. – S.Lott Dec 15 '08 at 2:12
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.