Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "1 is $1"
  4. echo "2 is $2"
  5. echo "9 is $9"
  6. echo "10 is $10"
  7. ---------------------------------
  8.  
  9. ./run_job.sh one two three four five six seven eight nine ten
  10.  
  11. output:
  12. 1 is one
  13. 2 is two
  14. 9 is nine
  15. 10 is one0
  16.  
  17.  
  18. ----------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement