- What is the difference between awk and sed ?
- What kind of application are best use cases for sed and awk tools ?
|
2
|
|
|
|
|
|
Both programs use regular expressions for selecting and processing text. I would tend to use
I would use
Of course those are just very simple examples that don't illustrate the full range of capabilities that each has to offer. |
||||||
|
|
|
1) What is the difference between awk and sed ? Both are tools that transform text. BUT awk can do more things besides just manipulating text. Its a programming language by itself with most of the things you learn in programming, like arrays, loops, if/else flow control etc You can "program" in sed as well, but you won't want to maintain the code written in it. 2) What kind of application are best use cases for sed and awk tools ? Conclusion: Use sed for very simple text parsing. Anything beyond that, awk is better. In fact, you can ditch sed altogether and just use awk. Since their functions overlap and awk can do more, just use awk. You will reduce your learning curve as well. |
||
|
|
|
|
found this on the web.... it's a long reading... Sed and awk article To use these command you really need to know what you're trying to do.... |
||||||||||||
|
|
|
don't mess with phenylephrine. And now I'm huffing Vicks VapoRub. - Could this be a precursor to IndyCar? Britain's Adam Christodoulou provisionally wins the Star Mazda Championship, ahead of Peter Dempsey. MTV2 is re-running RW/RR Challenge: The Island |
||
|
|
