update:extend old scripts + new random ones

This commit is contained in:
2026-04-11 22:15:55 +09:00
parent e78e9b25f1
commit 9a23290c39
5 changed files with 81 additions and 3 deletions

4
misc/go-project-name-replacer Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
[ $# -ne 2 ] && { echo "Usage: go-project-name-replacer <old-name> <new-name>"; exit 1; }
grep -rl "$1" . | xargs sed -i "s/$1/$2/g"