What is the difference between AWK and SED commands? Plz
give example and explain...
Answer Posted / sreenivas
sed reads from standard input and/or file(s), applies specified
changes which are typically mostly editing changes, and
writes to
standard output. It is relatively similar to the text editor
ed(1),
except in the case of sed it doesn't alter its input
file(s)*, but
writes the data to standard output, and sed also has some
commands
which ed does not have (and in most cases wouldn't be
suitable for or
make sense for ed). sed's commands are mostly limited to editing
type commands.
awk is sort of like an interpreted somewhat C-like language with
added built-in functionality for dealing with strings and
patterns.
Though not a fully general purpose programming language, awk
is much
closer to such than sed.
Is This Answer Correct ? | 22 Yes | 9 No |
Post New Answer View All Answers
How do you grep recursively?
How can you see the command line history?
What is difference between grep and find command in unix?
Who wrote grep?
How is the command '$cat file2 ' different from '$cat >file2 and >> redirection operators ?
What are the general commands in using unix os for a beginner?
What does this command do? Cat food 1 > kitty
Explain ‘system calls’ with respect to unix commands?
Is grep faster than awk?
What is the use of tee command?
How do I open a port?
What does #!/ Bin sh do?
What is awk used for?
What is the use of find command in unix?
Who command in unix?