git @ Cat's Eye Technologies The-Dipple / a455fe1
Add cls.c (nominally useful?) and stream.py (just an experiment.) Chris Pressey 10 years ago
2 changed file(s) with 24 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 #include <stdio.h>
1
2 /* Properly clear the screen, even on AmigaOS 1.3 --
3 Move to top left corner, THEN erase to end of display. */
4
5 int main(int argc, char **argv)
6 {
7 printf("%c[1;1H%c[2J", 27, 27);
8 return 0;
9 }
0 #!/usr/bin/env python
1
2 # a little experiment; try it with redirected input, and without
3
4 import sys
5
6 print sys.stdin.tell()
7 line = sys.stdin.readline()
8 print line
9 print sys.stdin.tell()
10 sys.stdin.seek(0, 0)
11 line = sys.stdin.readline()
12 print line
13 print sys.stdin.tell()