Compare commits
2 Commits
683931f6ef
...
7244206de5
Author | SHA1 | Date | |
---|---|---|---|
7244206de5 | |||
74b26b614d |
1
get_ssh_pvkey_ldlnet.sh
Executable file
1
get_ssh_pvkey_ldlnet.sh
Executable file
@ -0,0 +1 @@
|
||||
ssh emixam@192.168.42.49 cat ~/.ssh/id_ed25519-ldlnet_amsleaveamix | ssh-add -
|
17
up_share_file.sh
Executable file
17
up_share_file.sh
Executable file
@ -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
Block a user