X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fexamples%2Fos_related%2Fexample_registry_ops.sh;fp=scripts%2Fexamples%2Fos_related%2Fexample_registry_ops.sh;h=0000000000000000000000000000000000000000;hb=a13cd5a85a0981acfd3702c4eaec9aeff3ed80da;hp=3480d948bdda24d5980dff36dae940f00c932423;hpb=e93b155f95a019775a27f2b3ad03484e1bacfcdf;p=feisty_meow.git diff --git a/scripts/examples/os_related/example_registry_ops.sh b/scripts/examples/os_related/example_registry_ops.sh deleted file mode 100644 index 3480d948..00000000 --- a/scripts/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 - -