aboutsummaryrefslogtreecommitdiff
path: root/bin/slsf
blob: 6824ec13a1576f3aa269c1e59dbb6e5726052077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/awk -f
# 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 { next }
$1 == "Host" && $2 !~ /\*/ { print $2 }