Answer Posted / manoj kumar kar
Escape sequence in UNIX are used when a special character
is used as a part of a string.For Example if we need to
print "hi" then if we do
echo ""hi"" it will give the output as
hi
so we have to use escape sequence \ for printing "hi"
echo \"hi\"
Here \ is the escape sequence whuich tells " is part of the
string not a special character.
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
How do you grep recursively?
How do I run a bash script?
What is the command to view process running?
Differentiate cmp command from diff command.
Name the general commands in using unix os for a beginner?
What do know about tee command?
What is awk command used for?
What is the difference between cat command and more command?
What does the metacharacter mean?
How do I search for a file in unix command?
What is the behavioural difference between cmp and diff commands?
What do chgrp command do?
What is command substitution?
How do I use grep to find a file?
What is sed awk grep?