Lines Matching +full:- +full:replace
10 # the COPYING file in the top-level directory.
29 def process_all_files(parser: argparse.ArgumentParser, args: argparse.Namespace) -> None:
49 values = [v.replace('\n', ' ').replace('"', '') for v in values]
55 parser.error("--pattern is required")
89 def main() -> None:
92 p.add_argument('--passes', type=int, default=1,
94 p.add_argument('--pattern', required=True, action='append',
97 p.add_argument('--inplace', '-i', action='store_true',
99 p.add_argument('--dry-run', action='store_true',
101 p.add_argument('--force', '-f', action='store_true',
103 p.add_argument('--diff', action='store_true',
105 p.add_argument('--debug', '-d', action='store_true',
107 p.add_argument('--verbose', '-v', action='store_true',
109 p.add_argument('--table', action='store_true',