summaryrefslogtreecommitdiff
path: root/pyreplace.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyreplace.py')
-rwxr-xr-xpyreplace.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/pyreplace.py b/pyreplace.py
new file mode 100755
index 0000000..751d711
--- /dev/null
+++ b/pyreplace.py
@@ -0,0 +1,15 @@
+#/usr/bin/env python3
+
+import sys
+
+if __name__ == '__main__':
+ if len(sys.argv) < 3:
+ sys.exit()
+
+ data = []
+ with open(sys.argv[3], 'r+') as file:
+ data = file.read()
+ data = data.replace(sys.argv[1], sys.argv[2])
+ file.close()
+ with open(sys.argv[3], 'w') as filew:
+ filew.write(data)
in each repos: see "about"-tab (if existing) for more details / README.
mailto contact at omeckman dot net
all timestamps in UTC (German winter time: UTC+01:00, summer time: UTC+02:00)
dark theme is a modded version of: https://gist.github.com/Yoplitein/f4b671a2ec70c9e743fa