I want to echo
/printf
a dollar sign into a file - but echo $ > myfile
or such does not work (not surprising).
I tried escaping it like echo \$ > myfile
but it is also not working.
What is the correct way to perform it?
I'm working with TCSH on SunOs.