Skip to content

Instantly share code, notes, and snippets.

@Igglybuff
Created January 6, 2016 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Igglybuff/f9dd4456676dc9c6c249 to your computer and use it in GitHub Desktop.
Save Igglybuff/f9dd4456676dc9c6c249 to your computer and use it in GitHub Desktop.
Exercising my brain by printing things on the screen.
#!/bin/bash
for i in {1..51}; do
j=$((51 - $i))
printf %"$j"s
if [[ $i > 1 ]]; then
p=$(($i + $i))
fi
printf %"$p"s | tr " " "*"
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment