Skip to content

Commit

Permalink
chg: [cmd] update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
adulau committed Sep 24, 2023
1 parent c8827dd commit a5c20a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/hashlookup-analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
)
parser.add_argument(
"--bloomfilter-algorithm",
help="Specify hash algorithm which was used in filter set/bloomfilter.",
help="Specify hash algorithm which was used in filter set/bloomfilter. Default is SHA1.",
default="sha1",
)
parser.add_argument(
Expand Down Expand Up @@ -357,7 +357,9 @@ def generate_report():
if not args.live_linux:
print('hashlookup_result,filename,{},size'.format(args.bloomfilter_algorithm))
else:
print('hashlookup_result,pid,filename,{},size'.format(args.bloomfilter_algorithm))
print(
'hashlookup_result,pid,filename,{},size'.format(args.bloomfilter_algorithm)
)
if args.print_all:
for key in files.keys():
for file_object in files[key]:
Expand Down

0 comments on commit a5c20a9

Please sign in to comment.