Advertisement
codeido

Solaris prog5

Jan 15th, 2015
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. input:
  2. bash
  3. chmod u+x prog5
  4. ./prog5 eido 20 052-683-1234
  5.  
  6. output:
  7. echo your name is eido
  8. echo your age is 20
  9. echo your phone number is 052-683-1234
  10.  
  11. code:
  12. #! /bin/csh
  13. echo your name is $1
  14. echo your age is $2
  15. echo your phone number is $3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement