Skip to content

Instantly share code, notes, and snippets.

@benigumocom
Last active May 18, 2023 01:19
Show Gist options
  • Save benigumocom/63e1518b522ca31f23ce76f8be50e8d3 to your computer and use it in GitHub Desktop.
Save benigumocom/63e1518b522ca31f23ce76f8be50e8d3 to your computer and use it in GitHub Desktop.
Text Animation using Braille pattern dots
#!/usr/local/bin/bash
chars="⣷ ⣯ ⣟ ⡿ ⢿ ⣻ ⣽ ⣾"
while true
do
for c in $chars
do
sleep 0.2
echo -en "\r[$c] loading "
done
done
@benigumocom
Copy link
Author

👍 👍 👍 👍👍 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment