1#!/bin/bash 2 3if [[ $# != 2 ]]; then 4 echo "Usage: $0 <so> <interface so>" 1>&2 5 exit 1 6fi 7 8exec cp $1 $2 9