mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-12 13:28:35 +03:00
Update config.py
This commit is contained in:
@@ -84,12 +84,12 @@ def usage():
|
||||
|
||||
Read log
|
||||
--------
|
||||
octosuite --method read_log --log_file <log_file>
|
||||
octosuite --method read_log --log-file <log_file>
|
||||
|
||||
|
||||
Delete log
|
||||
----------
|
||||
octosuite --method delete_log --log_file <log_file>
|
||||
octosuite --method delete_log --log-file <log_file>
|
||||
|
||||
|
||||
Clear logs
|
||||
@@ -108,12 +108,12 @@ def usage():
|
||||
|
||||
Read CSV
|
||||
--------
|
||||
octosuite --method read_csv --csv_file <csv_file>
|
||||
octosuite --method read_csv --csv-file <csv_file>
|
||||
|
||||
|
||||
Delete CSV
|
||||
----------
|
||||
octosuite --method delete_csv --csv_file <csv_file>
|
||||
octosuite --method delete_csv --csv-file <csv_file>
|
||||
|
||||
|
||||
Clear CSV's
|
||||
@@ -139,9 +139,9 @@ def create_parser():
|
||||
parser.add_argument('-q', '--query', help='query (used with search methods)')
|
||||
parser.add_argument('-l', '--limit', help='output limit (used with methods that return results in bulk) (default: %(default)s)', default=10)
|
||||
parser.add_argument('-c', '--colors', '--colours', help='specify to run octosuite cli with colo[u]rs enabled', action='store_true')
|
||||
parser.add_argument('--csv_file', help='specify a csv file (used with csv management methods)')
|
||||
parser.add_argument('--log_file', help='specify a log file (used with logs management methods)')
|
||||
parser.add_argument('--log_csv', help='log output to a csv (default: %(default)s)', choices=['yes', 'no'], default='no')
|
||||
parser.add_argument('--csv-file', help='specify a csv file (used with csv management methods)', dest='csv_file')
|
||||
parser.add_argument('--log-file', help='specify a log file (used with logs management methods)', dest='log_file')
|
||||
parser.add_argument('--log-to-csv', help='log output to a csv (default: %(default)s)', choices=['yes', 'no'], default='no')
|
||||
return parser
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user