Help for this page

Select Code to Download


  1. or download this
    ( exists $ARGV[0] )
    
  2. or download this
    ( $ARGV[0] )
    
  3. or download this
    Win32::NetAdmin::GetUsers ... or die 
      unless exists $ARGV[0];
    if ( exists $ARGV[0] ) {
    ... }
    
  4. or download this
    unless ($ARGV[0]) { Win32::NetAdmin::GetUsers ... }
    else { ... }