dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

qssh.sh (112B)


      1 #!/bin/sh
      2 
      3 host="$(grep "^Host" ~/.ssh/config | cut -d " " -f 2- | fzf)"
      4 
      5 [ "$host" = "" ] && exit
      6 
      7 ssh "$host"