mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
8 lines
192 B
Bash
Executable File
8 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CURRENT_DOMAIN="khuedoan.com"
|
|
|
|
git grep "${CURRENT_DOMAIN}" -- apps platform system scripts | cut -d ':' -f1 | uniq | while read p; do
|
|
sed -i "s/${CURRENT_DOMAIN}/${1}/g" $p
|
|
done
|