docs
[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.2764 seconds and 4 git commands to generate.