Help for this page

Select Code to Download


  1. or download this
    system 'cmd.exe /c notepad.exe' || die 'no notepad';
    # is the same as
    ...
    system( 'cmd.exe /c notepad.exe' ) && die 'no notepad';
    # or you could do
    system 'cmd.exe /c notepad.exe' and die 'no notepad';
    
  2. or download this
    0 == system 'cmd.exe /c notepad.exe'
        or die 'no notepad';