Guest User

Untitled

a guest
Jun 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #/bin/bash
  2.  
  3. for i in {1..6}; do
  4. printf '#n'
  5. for (( n = 0; n < $i; n++ )); do
  6. printf '#'
  7. done
  8. done
  9.  
  10. vivsingh@blr-mp4sj:~/Desktop$ ./staircases.sh
Add Comment
Please, Sign In to add comment