Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    } else {
      print "NOT Found!\n";
    }
    
  2. or download this
    # FreeBSD script works ...
    #!/bin/sh
    ...
    else
      echo NOT Found!
    fi
    
  3. or download this
    rem Windows batch (cmd) works ...
    @echo off
    ...
    ) else (
      echo NOT Found!
    )