:point_up: disclaimer: this script was not written by me and unfortunately I cannot find the original location on the Internet anymore. I just wanted to post it anyway since it is one of my favorite fun shell scripts. So credits to whomever wrote it!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash

LINES=$(tput lines)
COLUMNS=$(tput cols)

declare -A snowflakes
declare -A lastflakes

clear

function move_flake() {

i="$1"
if [ "${snowflakes[$i]}" = "" ] || [ "${snowflakes[$i]}" = "$LINES" ]; then
    snowflakes[$i]=0
else
    if [ "${lastflakes[$i]}" != "" ]; then
    printf "\033[%s;%sH \033[1;1H " ${lastflakes[$i]} $i
    fi
fi

printf "\033[%s;%sH*\033[1;1H" ${snowflakes[$i]} $i

lastflakes[$i]=${snowflakes[$i]}
snowflakes[$i]=$((${snowflakes[$i]}+1))
}

while :; do
    i=$(($RANDOM % $COLUMNS))

    move_flake $i

    for x in "${!lastflakes[@]}"; do
    move_flake "$x"
    done

    sleep 0.1
done

Leave a comment