chore: modify help strings

This commit is contained in:
Eisuke Kawashima
2025-06-09 15:20:20 +09:00
parent 16cc444ae5
commit 7d017f1cb1
6 changed files with 11 additions and 11 deletions

View File

@ -33,7 +33,7 @@ def ensure_dir(dir):
def parse_args(): def parse_args():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=( description=(
"Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python2 thisfile.py outdir str.txt" "Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python3 thisfile.py outdir str.txt"
) )
) )

View File

@ -17,7 +17,7 @@ from binascii import unhexlify
def parse_args(): def parse_args():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=( description=(
"Helper - Specify input file to analysis and output folder to save corpdirus for constants in the overall project ------- Example usage : python2 thisfile.py outdir o.txt" "Helper - Specify input file to analysis and output folder to save corpdirus for constants in the overall project ------- Example usage : python3 thisfile.py outdir o.txt"
) )
) )
parser.add_argument( parser.add_argument(
@ -25,7 +25,7 @@ def parse_args():
) )
parser.add_argument( parser.add_argument(
"infile", "infile",
help="Specify file output of codeql analysis - ex. ooo-hex.txt, analysis take place on this file, example : python2 thisfile.py outdir out.txt", help="Specify file output of codeql analysis - ex. ooo-hex.txt, analysis take place on this file, example : python3 thisfile.py outdir out.txt",
) )
return parser.parse_args() return parser.parse_args()

View File

@ -25,7 +25,7 @@ def ensure_dir(dir):
def parse_args(): def parse_args():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=( description=(
"Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python2 thisfile.py outdir str.txt" "Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python3 thisfile.py outdir str.txt"
) )
) )
parser.add_argument( parser.add_argument(
@ -33,7 +33,7 @@ def parse_args():
) )
parser.add_argument( parser.add_argument(
"infile", "infile",
help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python2 thisfile.py outdir strings.txt", help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python3 thisfile.py outdir strings.txt",
) )
return parser.parse_args() return parser.parse_args()

View File

@ -25,7 +25,7 @@ def ensure_dir(dir):
def parse_args(): def parse_args():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=( description=(
"Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python2 thisfile.py outdir str.txt" "Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python3 thisfile.py outdir str.txt"
) )
) )
parser.add_argument( parser.add_argument(
@ -33,7 +33,7 @@ def parse_args():
) )
parser.add_argument( parser.add_argument(
"infile", "infile",
help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python2 thisfile.py outdir strings.txt", help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python3 thisfile.py outdir strings.txt",
) )
return parser.parse_args() return parser.parse_args()

View File

@ -25,7 +25,7 @@ def ensure_dir(dir):
def parse_args(): def parse_args():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=( description=(
"Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python2 thisfile.py outdir str.txt" "Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python3 thisfile.py outdir str.txt"
) )
) )
parser.add_argument( parser.add_argument(
@ -33,7 +33,7 @@ def parse_args():
) )
parser.add_argument( parser.add_argument(
"infile", "infile",
help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python2 thisfile.py outdir strings.txt", help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python3 thisfile.py outdir strings.txt",
) )
return parser.parse_args() return parser.parse_args()

View File

@ -25,7 +25,7 @@ def ensure_dir(dir):
def parse_args(): def parse_args():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description=( description=(
"Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python2 thisfile.py outdir str.txt" "Helper - Specify input file analysis and output folder to save corpus for strings in the overall project --------------------------------------------------------------------------- Example usage : python3 thisfile.py outdir str.txt"
) )
) )
parser.add_argument( parser.add_argument(
@ -33,7 +33,7 @@ def parse_args():
) )
parser.add_argument( parser.add_argument(
"infile", "infile",
help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python2 thisfile.py outdir strings.txt", help="Specify file output of codeql analysis - ex. ooo-atr.txt, analysis take place on this file, example : python3 thisfile.py outdir strings.txt",
) )
return parser.parse_args() return parser.parse_args()