Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #some sites with files
- http://artscene.textfiles.com/vt100/
- http://vt100.net/animation/
- #examples
- curl -s http://artscene.textfiles.com/vt100/movglobe.vt | pv -q -L 9600
- wget -q -O- http://artscene.textfiles.com/vt100/bambi.vt|pv -q -L 3600
- cat file.vt|pv -q -L 3600
- #a few in a row
- for i in `seq 0 9`;
- do
- wget -q http://vt100.net/animation/xmas$i.txt -O-| pv -q -L 3600;
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement