configfiles/scripts/.config/scripts/ssh_hosts.sh
2015-10-08 10:31:53 +02:00

8 lines
123 B
Bash
Executable file

#!/bin/bash
CONFIG="$HOME/.ssh/config"
if [ -f "$CONFIG" ]; then
cat "$CONFIG" | awk '{if($1=="Host"){print $2}}'
fi