When the shell is reading the command line what is the
difference between text enclosed between
double quotes ( ” ) and text enclosed between signal quotes
( ’ )?
Answer Posted / rajeev shukla
" " is generaly used to print the value of variable
and ' ' is used to print same as given text...
for ex:-
f=rajeev
echo "file name is $f"
output:- file name is rajeev.
and
echo ' file name is $f'
output:- file name is $f
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
Which command should you use to find the remaining disk space in unix server?
What is the size of time_t?
What does this command do? Cat food 1 > kitty
Is grep faster than awk?
What is ctrl d?
Which unix command to make a new directory?
What is the command to find hidden files in the current directory?
What is the command to compare two files in unix?
What are some command words?
What are awk commands?
What are grep patterns?
What is the significance of the 'tee' command?
How many unix commands are there?
What is the use of the tee command?
Explain ‘system calls’ with respect to unix commands?