Guest User

Untitled

a guest
Apr 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. [18:49:14][tag@metatron:~]$ ./foo bar
  2. bar
  3. [18:49:17][tag@metatron:~]$ ./foo asf123
  4. asf123
  5. [18:49:20][tag@metatron:~]$ ./foo ABC123
  6. ABC123
  7. [18:49:26][tag@metatron:~]$ ./foo abc123
  8. ABC
  9.  
  10. [18:49:39][tag@metatron:~]$ cat foo
  11. #!/usr/bin/make -f
  12.  
  13. %:
  14. @echo $@
  15.  
  16. abc123:
  17. @echo "ABC"
Add Comment
Please, Sign In to add comment