b59b0bafa401eb69b97f52b5d2594bd651a813df
[mirrors/Programs.git] / bash / world-animation / world.sh
1 #!/bin/bash
2
3 while true; do
4 cat world.txt | tr ' ' a | while read i; do
5 if [[ "$i" =~ World ]]; then
6 #sleep 0.2;
7 clear;
8 else
9 echo "$i" | tr a ' ';
10 fi;
11 done;
12 done;
This page took 0.282021 seconds and 5 git commands to generate.