2006-02-12 21:14:21 +08:00
|
|
|
|
|
|
|
function __fish_print_hostnames -d "Print a list of known hostnames"
|
|
|
|
|
|
|
|
# Print all hosts from /etc/hosts
|
2012-11-27 11:47:35 +08:00
|
|
|
if test -x /usr/bin/getent
|
|
|
|
getent hosts | tr -s ' ' ' ' | cut -d ' ' -f 2- | tr ' ' '\n'
|
2013-04-04 09:46:50 +08:00
|
|
|
else if test -r /etc/hosts
|
2012-11-27 13:02:13 +08:00
|
|
|
tr -s ' \t' ' ' < /etc/hosts | sed 's/ *#.*//' | cut -s -d ' ' -f 2- | sgrep -o '[^ ]*'
|
2006-02-12 21:14:21 +08:00
|
|
|
end
|
|
|
|
# Print nfs servers from /etc/fstab
|
2013-04-04 09:46:50 +08:00
|
|
|
if test -r /etc/fstab
|
2006-11-29 22:00:04 +08:00
|
|
|
sgrep </etc/fstab "^\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\|[a-zA-Z.]*\):"|cut -d : -f 1
|
2006-02-12 21:14:21 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# Print hosts with known ssh keys
|
2013-09-19 23:18:35 +08:00
|
|
|
# Does not match hostnames with @directives specified
|
2014-03-29 18:46:45 +08:00
|
|
|
sgrep -Eoh '^[^#@|, ]*' ~/.ssh/known_hosts{,2} ^/dev/null | sed -E 's/^\[([^]]+)\]:([0-9]+)$/\1/'
|
2009-02-03 05:02:42 +08:00
|
|
|
|
2014-01-11 03:58:54 +08:00
|
|
|
# Print hosts from system wide ssh configuration file
|
|
|
|
if [ -e /etc/ssh/ssh_config ]
|
2014-09-29 14:08:09 +08:00
|
|
|
awk -v FS="[ =]+" -v OFS='\n' 'tolower($0) ~ /^ *host[^*?!]*$/{ $1=""; print }' /etc/ssh/ssh_config
|
2014-01-11 03:58:54 +08:00
|
|
|
end
|
|
|
|
|
2009-02-03 05:02:42 +08:00
|
|
|
# Print hosts from ssh configuration file
|
|
|
|
if [ -e ~/.ssh/config ]
|
2014-09-29 14:08:09 +08:00
|
|
|
awk -v FS="[ =]+" -v OFS='\n' 'tolower($0) ~ /^ *host[^*?!]*$/{ $1=""; print }' ~/.ssh/config
|
2009-02-03 05:02:42 +08:00
|
|
|
end
|
2006-02-12 21:14:21 +08:00
|
|
|
end
|