Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ////3/////
- #!/bin/bash
- argString="$@"
- n=${#argString}
- echo -n '+'
- for((i=0;i<=$n+1;i++))
- do
- echo -n '-'
- done
- echo '+'
- echo -n '| '
- echo -n "$argString"
- echo ' |'
- echo -n '+'
- for((i=0;i<=$n+1;i++))
- do
- echo -n '-'
- done
- echo '+'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement