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
What is the use of awk command in unix?
Write a command that will display files in the current directory, in a colored, long format.
Which command is used to kill the last background job?
How to use grep command to list find the records of a file containing 10 different strings?
Is ‘du’ a command? If so, what is its use?
What is a command and examples?
Write a command that will find all text files in a directory such that it does not contain the word "amazing" in any form (that is, it must include the words amazing, amazing, or amazing)?
What is grep r?
What are bash commands?
What do chmod command do?
How do I use grep to find a file?
What is grep command in unix with examples?
What does this command do? Cat food 1 > kitty
What is the behavioural difference between cmp and diff commands?
What is ctrl d?