Advertisement
codeido

Solaris prog4

Dec 25th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. #! /bin/csh
  2. echo Enter a password
  3. set password=$<
  4.  
  5. while ($password != "1234")
  6.     echo $password is bad password
  7.     echo Try again, Enter a password
  8.     set password=$<
  9. end
  10.  
  11. echo $password is good password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement