Advertisement
metalx1000

Ascii Animations in the shell VT100 files

May 14th, 2017
583
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | None | 0 0
  1. #some sites with files
  2. http://artscene.textfiles.com/vt100/
  3. http://vt100.net/animation/
  4.  
  5. #examples
  6. curl -s http://artscene.textfiles.com/vt100/movglobe.vt | pv -q -L 9600
  7. wget -q -O- http://artscene.textfiles.com/vt100/bambi.vt|pv -q -L 3600
  8. cat file.vt|pv -q -L 3600
  9.  
  10. #a few in a row
  11. for i in `seq 0 9`;
  12. do
  13.   wget -q http://vt100.net/animation/xmas$i.txt -O-| pv -q -L 3600;
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement