1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-21 17:22:29 +00:00
gists/specgen/upload.sh
J. Fernando Sánchez f48bab94dd Move files
2021-10-30 15:23:01 +02: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