fork(69) download
  1. #!/bin/bash
  2.  
  3. Name='Rich Ba$tard'
  4. dough='$$$dollars$$$'
  5. cat <<____HERE
  6. $Name, you can win a lot of $dough this week!
  7. Notice that \`backticks' need escaping if you want
  8. literal text, not `pwd`, just like in variables like
  9. \$HOME (current value: $HOME)
  10. ____HERE
  11.  
Success #stdin #stdout 0s 19640KB
stdin
Standard input is empty
stdout
Rich Ba$tard, you can win a lot of $$$dollars$$$ this week!
Notice that `backticks' need escaping if you want
literal text, not /home/XEwcUc, just like in variables like
$HOME (current value: /home/XEwcUc)