Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- input:
- bash
- chmod u+x prog5
- ./prog5 eido 20 052-683-1234
- output:
- echo your name is eido
- echo your age is 20
- echo your phone number is 052-683-1234
- code:
- #! /bin/csh
- echo your name is $1
- echo your age is $2
- echo your phone number is $3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement