First push, clean slate

This commit is contained in:
Andrea Santaniello
2026-03-08 18:48:37 +01:00
parent 0c5affff10
commit d6c2757f21
9962 changed files with 2876215 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
old_text=$1
new_text=$2
echo "Old text: ${old_text}"
echo "New text: ${new_text}"
grep -rl "${old_text}" . | xargs gsed -i -e '1h;2,$H;$!d;g' -e "s/${old_text}/${new_text}/g"