Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    
    ...
      echo "Value is $i";
      sleep 1;
    done
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
        }
        print "Autoflush is currently ".($|?"on":"off").".\n";
    }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
        }
        print pre("Autoflush is currently " . ($|?"on":"off") );
    }