Advertisement
selebry

fdsfsdfsd

Sep 21st, 2022
1,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. ////3/////
  2. #!/bin/bash
  3. argString="$@"
  4. n=${#argString}
  5. echo -n '+'
  6. for((i=0;i<=$n+1;i++))
  7. do
  8. echo -n '-'
  9. done
  10. echo '+'
  11. echo -n '| '
  12. echo -n "$argString"
  13. echo ' |'
  14. echo -n '+'
  15. for((i=0;i<=$n+1;i++))
  16. do
  17. echo -n '-'
  18. done
  19. echo '+'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement