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
Name the various commands that are used for the user information in unix.
What does the command ' $who | sort –logfile > newfile' do?
What will the following command do?
What do know about tee command and its usage?
What is merge command in unix?
Which unix command to make a new directory?
What is the difference between awk and grep?
What does sed command do in unix?
How do I search for a file in unix command?
What is the use of awk command in unix?
Why is it called a shebang?
How do you repeat a command in terminal?
Which command is used to copy files?
Explain ‘library functions’ with respect to unix commands?
Why is grep called grep?