Guest User

Untitled

a guest
Dec 11th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/bin/bash
  2. echo -e -n "\n\nPodaj liczbe *****"
  3. read gwiazdka
  4. while [ $gwiazdka -gt 0 ]; do
  5. echo -e "\t\t*"
  6. gwiazdka=$(($gwiazdka-1))
  7. done
  8. exit 0
Add Comment
Please, Sign In to add comment