Advertisement
Guest User

make file escape

a guest
Feb 13th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. $ cat Makefile
  2. slash.txt:
  3.     echo "\\slash{\\another{po}}"
  4.     echo "$SHELL"
  5.  
  6. $ echo "\\slash{\\another{po}}"
  7. \slash{\another{po}}
  8.  
  9. $ echo "$SHELL"
  10. /bin/bash
  11.  
  12. $ make slash.txt
  13. echo "\\slash{\\another{po}}"
  14. \slash{nother{po}}
  15. echo "HELL"
  16. HELL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement