aboutsummaryrefslogblamecommitdiff
path: root/bin/shoal
blob: 8b7294a871f1f6ac26e17bc97582d5115c15675d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                   

 

                                                                             




                                         
 




                                             
                                 


















                                                                    
                                
 
#!/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
#

# Start by assuming we should parse all hosts
declare -i shoal
shoal=1

# Iterate through the config
while read -r option value _ ; do

    # "### shoal" and "### noshoal" toggles parsing
    case $option in
        '###')
            case $value in
                noshoal)
                    shoal=0
                    ;;
                shoal)
                    shoal=1
                    ;;
            esac
            ;;
        'Host')
            if ((shoal)) && [[ $value != *[^[:alnum:]_-]*  ]] ; then
                printf '%s\n' "$value"
            fi
            ;;
    esac
done < "${1:-$HOME/.ssh/config}"