Skip to content

Instantly share code, notes, and snippets.

@mskian
Created January 7, 2026 13:07
Show Gist options
  • Select an option

  • Save mskian/7d98859cb996234d455aa4ed8670d846 to your computer and use it in GitHub Desktop.

Select an option

Save mskian/7d98859cb996234d455aa4ed8670d846 to your computer and use it in GitHub Desktop.
Happy Pongal ASCII Text Art CLI
#!/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