From 782d9b2ac814246b2866c6ec9a025f5c9cdc3659 Mon Sep 17 00:00:00 2001 From: Sthope Date: Sat, 2 Sep 2023 13:48:25 +0200 Subject: [PATCH] Add scripts/rename.py --- scripts/rename.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 scripts/rename.py diff --git a/scripts/rename.py b/scripts/rename.py new file mode 100644 index 0000000..6e284a8 --- /dev/null +++ b/scripts/rename.py @@ -0,0 +1,28 @@ +import argparse + +def replace_word_in_file(file_path, search_word, replace_word): + try: + with open(file_path, 'r') as file: + file_data = file.read() + + updated_data = file_data.replace(search_word, replace_word) + + with open(file_path, 'w') as file: + file.write(updated_data) + + print(f"Replaced '{search_word}' with '{replace_word}' in {file_path}") + + except FileNotFoundError: + print(f"File '{file_path}' not found.") + except Exception as e: + print(f"An error occurred: {str(e)}") + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Search and replace a word in a file.") + parser.add_argument("--file_path", required=True, help="Path to the file in which to perform the replacement.") + parser.add_argument("--search_word", required=True, help="Word to search for in the file.") + parser.add_argument("--replace", required=True, help="Word to replace the search word with.") + + args = parser.parse_args() + + replace_word_in_file(args.file_path, args.search_word, args.replace)