diff options
Diffstat (limited to 'accesslist-duplicates.template')
-rw-r--r-- | accesslist-duplicates.template | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/accesslist-duplicates.template b/accesslist-duplicates.template index 8878bcc..25923e1 100644 --- a/accesslist-duplicates.template +++ b/accesslist-duplicates.template @@ -13,6 +13,8 @@ :global GlobalFunctionsReady; :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } +:local Read do={ :return; } + :local Seen [ :toarray "" ]; :local Shown [ :toarray "" ]; @@ -29,8 +31,8 @@ :set Shown ($Shown, $Mac); :put "\nNumeric id to remove, any key to skip!"; - :local Remove ([ :terminal inkey ] - 48); - :if ($Remove >= 0 && $Remove <= 9) do={ + :local Remove [ :tonum [ $Read ] ]; + :if ([ :typeof $Remove ] = "num") do={ :put ("Removing numeric id " . $Remove . "...\n"); / %PATH% access-list remove $Remove; } |