[add] up_share_file.sh
This commit is contained in:
parent
683931f6ef
commit
74b26b614d
|
@ -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"
|
Loading…
Reference in New Issue