aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInigoGutierrez <inigogf.95@gmail.com>2019-05-21 05:26:34 +0200
committerInigoGutierrez <inigogf.95@gmail.com>2019-05-21 05:26:34 +0200
commitff5b407fb4337aaea80da92cce9a526c52ccff10 (patch)
tree12b43c7e4f5550891935a7e11858fd523426ba87
parent1c080783990429918a4b7fa4d383b36bf63fae1f (diff)
downloadscripts-ff5b407fb4337aaea80da92cce9a526c52ccff10.tar.gz
scripts-ff5b407fb4337aaea80da92cce9a526c52ccff10.zip
Created scripts for using ssh and scp with common hosts.
-rwxr-xr-xscp.sh14
-rwxr-xr-xssh.sh16
2 files changed, 30 insertions, 0 deletions
diff --git a/scp.sh b/scp.sh
new file mode 100755
index 0000000..b01721f
--- /dev/null
+++ b/scp.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+# Allows to select a host to send files to through scp
+
+hostsfile="$HOME/.hosts"
+hostnames="$(cut -d'#' -f1 < "$hostsfile" | fzf)"
+host="$(grep "$hostnames" < "$hostsfile")"
+hostname="$(echo "$host" | cut -d'#' -f1)"
+hostaddress="$(echo "$host" | cut -d'#' -f2)"
+hostport="$(echo "$host" | cut -d'#' -f3)"
+hostpass="$(echo "$host" | cut -d'#' -f4)"
+targetPath="$(echo "$host" | cut -d'#' -f5)"
+echo "Sending to $hostname"
+[ "$hostpass" ] && pass -c "$hostpass"
+[ "$hostport" ] && scp -P $hostport "$@" $hostaddress:$targetPath || scp "$@" $hostaddress:$targetPath # No quotes here!
diff --git a/ssh.sh b/ssh.sh
new file mode 100755
index 0000000..d049de1
--- /dev/null
+++ b/ssh.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+# Allows to select a host to connect to through ssh
+# Hosts are read from the file $hostsfile, in which each line should be a host in the form identifier#address#port#input for pass
+# Port and input for pass are optional
+
+hostsfile="$HOME/.hosts"
+hostnames="$(cut -d'#' -f1 < "$hostsfile" | fzf)"
+host="$(grep "$hostnames" < "$hostsfile")"
+hostname="$(echo "$host" | cut -d'#' -f1)"
+hostaddress="$(echo "$host" | cut -d'#' -f2)"
+hostport="$(echo "$host" | cut -d'#' -f3)"
+hostpass="$(echo "$host" | cut -d'#' -f4)"
+echo "Connecting to $hostname"
+[ "$hostpass" ] && pass -c "$hostpass"
+[ "$hostport" ] && ssh $hostaddress -p $hostport || ssh $hostaddress # No quotes here!
+#$(echo "ssh $hostaddress -p $hostport") # Alternative to prev line