2.1.1: Option to ignore APs without clients (--clients-only or -co)

Requested in #79
This commit is contained in:
derv82
2018-04-06 17:25:31 -04:00
parent b716e6099f
commit 2b7870cb7c
3 changed files with 12 additions and 1 deletions

View File

@@ -118,6 +118,11 @@ class Arguments(object):
help=self._verbose('Hides targets with ESSIDs that match the given text'))
glob.add_argument('--ignore-essid', help=argparse.SUPPRESS, action='store', dest='ignore_essid', type=str)
glob.add_argument('--clients-only', '-co',
action='store_true',
dest='clients_only',
help=Color.s('Only show targets that have associated clients (default: {G}off{W})'))
glob.add_argument('--showb',
action='store_true',
dest='show_bssids',