describe the escaping sequence characteres in unix
Answer / 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 |
What does awk stand for?
What command will bring user back to their home directory in UNIX?
How can you see the command line history?
1-how will you display a file whose name is starting with '- '? 2-how will you add a patten at end of every line in vi editor?
what is the difference between KILL and KILL -9?
5 Answers Informatica, Nutanix,
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 are bash commands?
How do I search a whole word in vim?
describe the escaping sequence characteres in unix
How to copy multiple files and directories into some other directory?
in a growing log file how will you see the 1st 99 lines?
which command is used to change group?