Help for this page

Select Code to Download


  1. or download this
    c:\test>type error.bat
    @echo off
    exit /b 123
    
  2. or download this
    system 'error.bat & exit ERRORLEVEL';;
    print $? >>8;;
    
    123
    
  3. or download this
    c:\test>type error.bat
    @echo off
    ...
    c:\test>p1
    [0] Perl> system 'error.bat'; print $? >>8;;
    123