Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. % data="single argument"
  2. % print -l $data
  3. single argument
  4.  
  5. % emptyarg=
  6. % functon count() { echo $# }
  7. % count $emptyarg
  8. 0
  9. % count "$emptyarg"
  10. 1
  11.  
  12. % setopt noglobsubst
  13. % star=*
  14. % echo $star
  15. *
  16. % echo $~star
  17. readme.txt test.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement