aboutsummaryrefslogtreecommitdiff
path: root/bin/shoal
blob: d2ecfc955a1aab77a7dfd484569f3fcc41ae97f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash

#
# shoal(1) -- Print all the non-wildcard Host names (first one per line) from
# an ssh_config(5) file, defaulting to $HOME/.ssh/config.
#
# Author: Tom Ryder <tom@sanctum.geek.nz>
# Copyright: 2014
# License: Public domain
#

# Name self
self=shoal

while read -r option value _ ; do
    if [[ $option == 'Host' && $value != *[^[:alnum:]_-]* ]] ; then
        printf '%s\n' "$value"
    fi
done < "${1:-$HOME/.ssh/config}"