Help for this page

Select Code to Download


  1. or download this
    print "T is '$t'\n";
    
  2. or download this
    $t = "dir \"C:\\ProgramData\\Test1\\Test Folder\""
    
  3. or download this
    dir "C:\\ProgramData\\Test1\\Test Folder"
    
  4. or download this
    $ perl -wMstrict
    my $t = "dir \"C:\\ProgramData\\Test1\\Test Folder\"";
    print "T is '$t'\n";
    __END__
    T is 'dir "C:\ProgramData\Test1\Test Folder"'