I think you can escape it with another dollar sign so $$
Simply beautiful
Thank you!!
I was trying to write XML and include a search that looked like:
eval something=$n$ | eval filename=(code) ........ | map maxsearches=28 search="| inputcsv $filename"
... and it was not working for the life of me. Turning $filename into $$filename$$ did the trick.
eval something=$n$ | eval filename=(code) ........ | map maxsearches=28 search="| inputcsv $$filename$$"
Simple, elegant and awesome! Thanks!