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 |
How can we use grep command in unix?
what does the job command do?
Assume that a file’s permissions give you read and write access. What operations can you perform on the file if it is in a directory which has “r”(read) only process? What operations can you perform on the file if it is in a directory which has “x”(execute) only access?
Give Command that will move a single file called "unix.txt"
distinguish between physical addresses and logical address?
23 Answers College School Exams Tests, CTS, Infosys, SAX, TATA, TCS,
Differentiate cat command from more command.
Write a command that will display files in the current directory, in a colored, long format.
What is awk command used for?
What is the use of awk command in unix?
Write a command to find all of the files which have been accessed within the last 30 days.
How to identify whether a file is normal file or directory?
If we want to see first 35 lines of a file which command we have to use?