diff --git a/up_share_file.sh b/up_share_file.sh new file mode 100755 index 0000000..c51a243 --- /dev/null +++ b/up_share_file.sh @@ -0,0 +1,17 @@ +#!/usr/bin/bash +# +# usage: up_share_file.sh FILE [NAME] + +exit_nofile() +{ + echo "Give a file to upload"; + exit 1; +} + +test -f "$1" || exit_nofile +FILE="$1" + +REMOTE=${2:-`basename "$FILE"`} + +echo put "$FILE" "/home/masq/~masq/$REMOTE" | sftp -q masq@share.freepoteries.fr >/dev/null +echo "https://share.freepoteries.fr/~masq/$REMOTE"