Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    use Getopt::Long;
    ...
    if ($DELETE) {
       ...
    }
    
  2. or download this
    # the short form
    script.pl -a -r -d
    ...
    script.pl --add --remove --delete
    script.pl --delete
    ...
    
  3. or download this
    #!/usr/local/bin/perl -w
    use Getopt::Long;
    ...
            print "Command [$action] is NOT monitored\n";
        }
    }
    
  4. or download this
    Command [ADD] is monitored
    Command [ADD] is monitored
    ...
    Command [ADD] is monitored
    Command [DELETE] is monitored
    Command [FREE] is NOT monitored