GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
More strict ownership asserts
[mirrors/Programs.git]
/
bash
/
world-animation
/
world.sh
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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.321189 seconds
and
4
git commands to generate.