-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean_conf_files.py
46 lines (37 loc) · 1.61 KB
/
clean_conf_files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""
This helper script cleans up Wireshark profile config files by removing commented, blank, and unnecessary lines.
"""
import os
def is_filtered(line_text):
filter_rules = [
{
"condition": line_text in ['\n', '\r\n'],
"filtered": True
},
{
"condition": line_text.startswith("#"),
"filtered": True
},
]
for rule in filter_rules:
if rule["condition"]:
return rule["filtered"]
if __name__ == "__main__":
git_dir = os.path.join(".",".git")
build_dir = os.path.join(".", ".build")
output_dir = os.path.join(".", ".output")
excluded_dirs = (git_dir, build_dir, output_dir)
for root, dirs, files in os.walk("."): # Finds all files under the current working directory
if not root.startswith(excluded_dirs) and root != ".": # Filter out excluded directories
for conf_file in files:
# Read the current file, and exclude any lines matching is_filtered() filter rules
with open(os.path.join(root, conf_file), "r", newline="") as current_file:
unfiltered_lines = []
for line in current_file:
if is_filtered(line):
continue
else:
unfiltered_lines.append(line)
# Open the current file again, replacing its contents with only the remaining unfiltered lines
with open(os.path.join(root, conf_file), "w", newline="") as current_file:
current_file.writelines(unfiltered_lines)