mirror of
https://github.com/balkian/gists.git
synced 2024-11-01 08:01:44 +00:00
58397e7325
git-subtree-dir: repos/90c0497c0b207812cbbc git-subtree-mainline:3eaae25ed7
git-subtree-split:3c24001f1d
27 lines
374 B
Bash
27 lines
374 B
Bash
#!/bin/bash
|
|
if [ $# -lt 1 ]
|
|
then
|
|
echo "Please, specify an ontology"
|
|
exit 0
|
|
else
|
|
ONTO=$1
|
|
fi
|
|
if [ $# -lt 2 ]
|
|
then
|
|
DIR=~/Doctorado/Ontologies/$ONTO/spec/
|
|
else
|
|
DIR=$2
|
|
fi
|
|
|
|
if [ $# -lt 3 ]
|
|
then
|
|
REMOTE=ontologies@gsi.dit.upm.es:$ONTO/
|
|
else
|
|
REMOTE=$3
|
|
fi
|
|
|
|
echo "Uploading to $REMOTE"
|
|
#scp -r $DIR $REMOTE
|
|
sftp $REMOTE -b <<EOF
|
|
mput -r $DIR
|
|
EOF |