You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
#!/usr/bin/expect -f
|
|
|
|
if [ $# -lt 3 ]
|
|
then
|
|
echo "Usage : `basename $0` [PATH] [ORG_FILE] [CHG_FILE]"
|
|
exit
|
|
fi
|
|
|
|
PATH=$1
|
|
ORG=$2
|
|
CHG=$3
|
|
|
|
cd $PATH
|
|
|
|
mv $ORG $CHG
|