This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/fish | |
# | |
# Author: Darrin Schmitz | |
# Date: 04/14/2016 | |
function qssh | |
set option $argv | |
if not count $argv > /dev/null | |
printf "\n\n\nWhere would you like to connect to?\n\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: Darrin Schmitz | |
# Date: 01/20/2016 | |
option=$1 | |
if [ -z "$1" ]; then | |
printf "\n\n\nWhere would you like to connect to?\n\n" | |
printf "1) [email protected]\n\n" #Replace these with the connections you wish to make. |