For example, $PATH and $HOME
When i type echo $PATH it returns my $PATH, but i want to echo the word $PATH and not what the actual variable stands for, echo "$PATH" doesn’t work either.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You just need to escape the dollar $.:
echo $PATH $PATH
Or surround it in single quotes:
echo '$PATH' $PATH
This will ensure the word is not interpreted by the shell.
Method 2
$ in the syntax of most shells is a very special character. If we only look at Bourne-like shells it is used to introduce:
- parameter expansions as in
$#,$var,${foo:-bar} - command substitution as in
$(logname)(also${ logname;}in some shells to avoid the subshell) - arithmetic expansion as in
$((1+1))(also$[1+1]in some shells). - other forms of quoting in some shells like
$'n'or$"localized string".
Except for the last case, those expansions/substitutions still occur inside double quotes (and inside $"..." in bash or ksh93)
To stop that $ from being treated specially, you need to quote it with either:
- single quotes:
echo '$PATH'orecho '$'PATH. The one you’d generally want to use as it escapes all characters (except itself) in most shells. - blackslash:
echo $PATH. Also inside double quotes:echo "$PATH" - in some shells, some other quoting operator:
echo $'$PATH',echo $'44PATH'(assuming an ASCII compatible charset),echo $'u0024'
Or make sure it’s not part of a valid form of expansion as listed above:
echo "$"PATH. Those should be avoided because some shells likeecho $""PATH,echo $"PATH"ksh93andbashsupport the$"..."form of quotes.echo $``PATH. No reason why you’d want to use that one except to show that it’s possible.echo "${$+$}PATH"and other convoluted ones…
Or you could output that $ another way:
- with a Unix-compliant
echo:echo '44PATH'(some otherechos needecho -e '44PATH') printf '44PATHn'-
cat << EOF $PATH EOF
Note how those backslashes need to be quoted as they also are special to the shell obviously.
Should hopefully be clear by now that although there are many ways to do it, there’s no good reason you’d want to use anything else but echo '$PATH' here.
Method 3
Note that literal $ inside double quotes can be a problem. It can be done by producing the $ outside the double quotes, like this:
echo "My terminal is $term, first file found in /dev is </dev/`ls /dev | head -n 1`>, the dollar symbol is '"`echo '$'`"', and a newspaper costs "`echo '$'`"2.50." or like this: echo "$term is the value of "'$term'
OUTPUT:
My terminal is xterm, first file found in /dev is </dev/acpi>, the dollar symbol is '$', and a newspaper costs $2.50. xterm is the value of $term
Method 4
Use:
echo ''$PATH'' >> output.txt
This will work.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0