X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fos_related%2Fexample_registry_ops.sh;fp=examples%2Fos_related%2Fexample_registry_ops.sh;h=0000000000000000000000000000000000000000;hb=c589a3686d4508c9c5ea7841deb9be251460ddc3;hp=3480d948bdda24d5980dff36dae940f00c932423;hpb=4c595ba63a6c5203e104fe83fee43d69d3ff7aef;p=feisty_meow.git diff --git a/examples/os_related/example_registry_ops.sh b/examples/os_related/example_registry_ops.sh deleted file mode 100644 index 3480d948..00000000 --- a/examples/os_related/example_registry_ops.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# an example of using the reg.exe tool on windows to find some things in -# the registry. -# this happens to look in the registry for PuTTY keys for a set of named -# displays. - -declare ip_array=(zorba-1 zorba-2 zorba-3 zorba-4 zorba-5) - -for i in ${ip_array[*]}; do - target=${i} - echo "display is $target" - reg query 'HKCU\Software\SimonTatham\PuTTY\SshHostKeys' /v "rsa2@22:$target" -done - -