Skip to content

Instantly share code, notes, and snippets.

View gamemann's full-sized avatar

Christian Deacon gamemann

View GitHub Profile
@gamemann
gamemann / matrix.md
Last active August 2, 2023 22:06
Matrix Linux Command

Linux command that outputs code animations similar to the movie The Matrix.

while :; do \
    echo \
        $LINES \
        $COLUMNS \
        $(( $RANDOM % $COLUMNS)) \
        $(printf "\U$(($RANDOM % 500))"); \
 sleep 0.05; \