Below you will find pages that utilize the taxonomy term “escaping”
June 14, 2016
Escaping characters in echo
I knew of this option:
echo -e "\042asdf\042" # this prints ("asdf") but never realized that one could also:
echo $'\042asdf\042' # this also prints ("asdf") I don’t even know what to call that…