aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrecursive-replace-string8
-rwxr-xr-xreplace-spaces-with-minus6
2 files changed, 14 insertions, 0 deletions
diff --git a/recursive-replace-string b/recursive-replace-string
new file mode 100755
index 0000000..8d6d888
--- /dev/null
+++ b/recursive-replace-string
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+FIND="<hr\/>"
+REPL="<hr>"
+
+find . -name "*.html" -exec \
+ sed -i 's/$FIND/$REPL/g' {} +
+
diff --git a/replace-spaces-with-minus b/replace-spaces-with-minus
new file mode 100755
index 0000000..13a74e6
--- /dev/null
+++ b/replace-spaces-with-minus
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+# replace spaces in filenames with -
+for f in *\ *; do
+ mv "$f" "${f// /-}";
+done