diff options
Diffstat (limited to 'accesslist-duplicates.template')
-rw-r--r-- | accesslist-duplicates.template | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accesslist-duplicates.template b/accesslist-duplicates.template index 9bb3ce1..7345ad5 100644 --- a/accesslist-duplicates.template +++ b/accesslist-duplicates.template @@ -22,9 +22,9 @@ / %PATH% access-list print where mac-address=$Mac; :set Shown ($Shown, $Mac); - :put "\nEnter to skip, numeric id to remove!"; - :local Remove [ :return ]; - :if ($Remove != "") do={ + :put "\nNumeric id to remove, any key to skip!"; + :local Remove ([ :terminal inkey ] - 48); + :if ($Remove >= 0 && $Remove <= 9) do={ :put ("Removing numeric id " . $Remove . "...\n"); / %PATH% access-list remove $Remove; } |