mirror of
https://github.com/adulau/MalwareClassifier.git
synced 2024-12-22 16:56:02 +00:00
13 lines
332 B
Python
13 lines
332 B
Python
import argparse
|
|
import sys
|
|
|
|
argParser = argparse.ArgumentParser(description='Malware classifier')
|
|
argParser.add_argument('-f', action='append', help='Filename')
|
|
args = argParser.parse_args()
|
|
|
|
if args.f is not None:
|
|
filename = args.f
|
|
for line in sys.stdin:
|
|
print (line.split(",")[0])
|
|
else:
|
|
argParser.print_help()
|