Help for this page

Select Code to Download


  1. or download this
    open(F, "<README");   # arbitrary
    $|=1;
    ...
    while(<F>) {
        print "line $.\n";
    }
    
  2. or download this
    open("README", O_RDONLY|O_LARGEFILE)    = 3
    read(3, "\t\t    GNU GENERAL PUBLIC LICENSE"..., 4096) = 4096   # firs
    +t block
    ...
    write(1, "line 80\n", 8line 80
    read(3, " and appropriately publish on ea"..., 4096) = 4096     # seco
    +nd block
    write(1, "line 81\n", 8line 81