2007-05-02 01:07:00 +00:00
|
|
|
BEGIN {
|
|
|
|
print "more";
|
2009-01-27 09:26:15 +00:00
|
|
|
#print | "more";
|
|
|
|
#print > "echo";
|
|
|
|
#print >> "echo";
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
getline x < "abc"; /* open("abc", O_RDONLY|O_LARGEFILE) = 3 */
|
2009-01-27 09:26:15 +00:00
|
|
|
#print 10 >> "abc"; /* open("abc", O_WRONLY|O_APPEND|O_CREAT|O_LARGEFILE, 0666) = 4 */
|
2007-05-02 01:07:00 +00:00
|
|
|
getline x < "abc";
|
2009-01-27 09:26:15 +00:00
|
|
|
#print x;
|
2007-05-02 01:07:00 +00:00
|
|
|
a = close ("abc"); /* close(4) */
|
|
|
|
print "a=" a;
|
2009-01-27 09:26:15 +00:00
|
|
|
#print "hey"
|
2007-05-02 01:07:00 +00:00
|
|
|
b = close ("abc"); /* close(3) */
|
|
|
|
print "b=" b;
|
|
|
|
|
|
|
|
getline x < "Makefile.cl";
|
|
|
|
getline y < "awk.c";
|
2009-01-27 09:26:15 +00:00
|
|
|
|
|
|
|
print x;
|
|
|
|
print y;
|
2007-05-02 01:07:00 +00:00
|
|
|
c = close ("Makefile.cl");
|
|
|
|
d = close ("awk.c");
|
|
|
|
|
|
|
|
}
|