Help for this page

Select Code to Download


  1. or download this
    #!/bin/bash
    if [ "$1" == "" ]; then
    ...
    else
       ssh $0
    fi
    
  2. or download this
    $ ~/ssh/myhost.org radmat
    
  3. or download this
    #!/usr/bin/perl
    if (!defined $ARGV[0] || $ARGV[0] eq '') { 
    ...
    else { 
       exec('ssh',"$ARGV[0]\@$0") 
    }