Help for this page

Select Code to Download


  1. or download this
    $ENV{TYPE}='c:\my test\type me';
    $new_debug_log='c:\my test\type me.bat';
    ...
    __output__
    @echo off
    @type %1
    
  2. or download this
    $ENV{TYPE} = q("c:\my test\type me");
    $new_debug_log = q("c:\my test\type me.bat");
    ...
    __output__
    @echo off
    @type %1