Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    $SVN_LIST = `svn status --depth infinity --no-ignore C:\\Nonexistant_D
    +IR`;
    #error message comes out on STDERR since it isn't captured.
    print "$SVN_LIST"; # prints nothing.
    
  2. or download this
    svn status --depth infinity --no-ignore C:\NON_EXISTANT_DIR > xxx 2> e
    +rr