1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-01 08:01:44 +00:00
gists/upload.sh
J. Fernando Sánchez 3c24001f1d
2015-12-10 11:04:27 +01:00

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