mirror of
https://github.com/brmlab/BLIT.git
synced 2025-06-07 19:34:00 +02:00
10 lines
181 B
Bash
Executable file
10 lines
181 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function fingerprints() {
|
|
local file="$1"
|
|
while read l; do
|
|
[[ -n $l && ${l###} = $l ]] && ssh-keygen -l -f /dev/stdin <<<$l
|
|
done < $file
|
|
}
|
|
|
|
fingerprints "$1"
|