I want to print string called "$1". But when I do this with echo it prints string which equals to "$1" variable. How can I print "$1" just like string?
for example:
$1 = "output"
echo $1 ==> output
But I want this:
echo $1 ==> $1
|
|
|||||||||||||||||||||
|
You need to either:
|
|||||
|