chiark / gitweb /
distorted.lisp: Delete the last mention of `pifi'.
[zones] / fetch-sshfp
CommitLineData
8c8a5681
MW
1#! /bin/sh
2
3while read host; do
4 { ssh $host "ssh-keygen -r$host" >$host.sshfp.new
5 mv $host.sshfp.new $host.sshfp; }&
6done <<END
7ibanez
8radius
9roadstar
10jem
11artist
12fender
13precision
14telecaster
15stratocaster
16jazz
17gibson
18vampire
19terror
20crybaby
21orange
22END
23
24wait