From 13139f06ec935b881dca5c97f26f93223ead53d6 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Thu, 8 May 2025 09:21:00 +0200 Subject: update --- recursive-replace-string | 8 ++++++++ replace-spaces-with-minus | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100755 recursive-replace-string create mode 100755 replace-spaces-with-minus 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="" +REPL="
" + +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 -- cgit v1.2.3