Created
January 7, 2026 13:07
-
-
Save mskian/7d98859cb996234d455aa4ed8670d846 to your computer and use it in GitHub Desktop.
Happy Pongal ASCII Text Art CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ----------------------------------------------------------------------------- | |
| # | |
| # Info: | |
| # author: Santhosh Veer | |
| # file: pongal.sh | |
| # created: 13.01.2024 | |
| # revision: 13.01.2024 | |
| # version: 0.1 | |
| # ----------------------------------------------------------------------------- | |
| # | |
| # Happy Pongal ASCII Text Art | |
| # Code - https://raw.githubusercontent.com/mskian/happy-pongal-wishes/main/pongal.sh | |
| # Pongal Greetings - https://pongal.tamilwords.net | |
| # | |
| # ----------------------------------------------------------------------------- | |
| ## Progress Bar | |
| progress_bar() { | |
| local total_steps=50 | |
| local width=30 | |
| for ((i=0; i<=${total_steps}; i++)); do | |
| percentage=$((i * 100 / total_steps)) | |
| progress=$((i * width / total_steps)) | |
| printf "\r[%-${width}s] %d%%" $(printf "#%.0s" $(seq 1 ${progress})) ${percentage} | |
| sleep 0.1 | |
| done | |
| echo -ne "\r\033[2K" | |
| } | |
| progress_bar | |
| ## Pongal ASCII Text Art | |
| echo -ne " | |
| \n πΎ \e[36m Pongal Greetings\e[0m πΎ | |
| \\033[1;32m | |
| @@ | |
| @@@@@@@@@@ | |
| @@@@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@@@@@@ | |
| /////////@@@@@@********* | |
| *******@@@@@@,,,,,,, | |
| ******@@@@@@,,,,,, | |
| /////////@@@@********* | |
| ,//////////////************** | |
| .////////////////**************** | |
| ////###//////////#/***********((**** | |
| /%/////////&&&/////*****%%%*********( | |
| /&&&&//&&&&&/&&&&&/*%%%%%*%%%%%**%%%%# | |
| ///&&&&/////////&&%%********(%%%%*** | |
| *//////////##/////*****///********* | |
| ////////////////**************** | |
| //////////////************** | |
| //////////********** | |
| βββββ ββββ ββββ ββββ ββββ | |
| βββββ ββββ ββββ ββββ ββββ | |
| βββββ ββββ ββββ ββββ ββββ | |
| βββββ ββββ ββββ ββββ ββββ βββ | |
| βββββ ββββ ββββ ββββ ββββ βββ | |
| βββββ ββββ ββββ ββββ ββββ βββ | |
| /\ π | |
| / \ | |
| ____/______\____ | |
| | | | |
| * π₯ * | |
| * /\ * | |
| |________________| | |
| < Mattu Pongal Wishes > | |
| --------------------- | |
| \ ^__^ | |
| \ (oo)\_______ | |
| (__)\ )\/\ | |
| ||----w | | |
| || || | |
| \\033[0m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment