aboutsummaryrefslogtreecommitdiff
path: root/bin/slsf.awk
blob: 3d5c190ff7c10afb3a77959400ccef8048ba33ca (plain) (blame)
1
2
3
4
5
6
7
8
9
# Print the first non-glob "Host" name from each line of ssh_config(5) files

# Manage the processing flag (starts set in each file)
FNR == 1 || /### sls/ { sls = 1 }
/### nosls/ { sls = 0 }

# If processing flag set, directive is "Host", and hostname has no wildcards,
# then print it
sls && $1 == "Host" && $2 !~ /\*/ { print $2 }