what are special characters and explain how does text
varies by the usage of single quotes,double quotes and back
quotes?
Answer Posted / bichitra kumar
Special character like %,$,&,? are taken differently in
unix as they have some different meaning and use.
backslash (\) is used to mask the special meaning of these
special character immidietly following it.
example is grep 'hello\.gif' file
Here \ is used to mask . as it will show the hidden file in
unix directory.
Double Quotes( "" )-- Anything enclose in double quotes
removed meaning of that characters (except \ and $).
example: %echo "Today is date"
Today is date
Single quotes( '' )--Enclosed in single quotes remains
unchanged.
Back quote( `` )--To execute command
%echo "Today is `date`"
Today is Mon Aug 11 05:33:46 EDT 2008
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Why is shell scripting important?
What language is used in terminal?
c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l
What language is shell scripting?
What is option in shell script?
Is shell scripting a programming language?
What is the syntax of while loop in shell scripting?
How can I send a mail with a compressed file as an attachment?
Is shell scripting a language?
Explain about return code?
What is a shell environment?
What is the best scripting language?
What is shell application?
How do we delete all blank lines in a file?
Which shell is the best?