added individual user to the usual .ssh/config
This commit is contained in:
parent
681d685f73
commit
fa90dec208
|
@ -10,7 +10,8 @@ ssh() {
|
|||
}
|
||||
|
||||
ssh-host() {
|
||||
ssh $(awk '$1 == "Host" && $2 != "*" {print $2}' "$HOME/.ssh/config" | fzf --reverse)
|
||||
ssh $(cat "$HOME/.ssh/config" "$HOME/.ssh/conf.d/individual_user" \
|
||||
| awk '$1 == "Host" && $2 != "*" {print $2}' | fzf --reverse)
|
||||
}
|
||||
|
||||
# Creates a new directory and immediately changes into it
|
||||
|
|
Loading…
Reference in New Issue