Skip to content

Instantly share code, notes, and snippets.

@neilhwatson
Last active January 18, 2017 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilhwatson/28b8acddcfaf2e2becace34be6686bc5 to your computer and use it in GitHub Desktop.
Save neilhwatson/28b8acddcfaf2e2becace34be6686bc5 to your computer and use it in GitHub Desktop.
Prevent any interpretation in output
#!/bin/sh
variables='Do not show'
x='
Do not expand \\ type escapes and
all $variables
'
echo "$x"
$ ~/src/neil/test/v.sh
Do not expand \ type escapes and
all $variables
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment