Skip to content

Commit

Permalink
#25 this appears to fix it and tests still pass
Browse files Browse the repository at this point in the history
  • Loading branch information
waywalke committed Jun 6, 2019
1 parent 1691c44 commit d1e030b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssh-find-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ find_live_ssh_agents() {
function fingerprints() {
local file="$1"
while read -r l; do
[[ -n "$l" && ${l###} = "$l" ]] && ssh-keygen -l -f /dev/stdin <<<"$l"
[[ -n "$l" && ${l##\#} = "$l" ]] && ssh-keygen -l -f /dev/stdin <<<"$l"
done < "$file"
}

Expand Down

0 comments on commit d1e030b

Please sign in to comment.