Help for this page

Select Code to Download


  1. or download this
    perl -e "print $_ . qq{\n} for glob q{'c:/documents and settings/*'}"
    
  2. or download this
    perl -e "opendir my $d, 'c:/documents and settings'; print $_ . qq{\n}
    + for readdir $d;"
    
  3. or download this
    perl -e "open my $f, '<', $ENV{systemdrive} . '/windows/system32/drive
    +rs/etc/hosts'; print $_ while <$f>;"
    
  4. or download this
    perl -e "$ENV{PATH} = 'c:/windows/'; system( 1, 'notepad.exe', 'c:/win
    +dows/system32/drivers/etc/hosts' );"
    
  5. or download this
    dir "c:/windows/system"