what are special characters and explain how does text
varies by the usage of single quotes,double quotes and back
quotes?
Answer / 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 |
How do I run a .sh file on mac?
what is tickets $ what low,medium,high priorite pls define time also
Write down the syntax for all the loops in shell scripting.
How do scripts work?
How would you compare the strings in a shell script?
Why is it called a shell?
What is batch file programming?
What command needs to be used to take the backup?
Why do we use shell scripting?
How can you get the value of pi till a 100 decimal places?
How do I run a .sh file?
What is c in shell script?