mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:04:32 +07:00
8 lines
194 B
Bash
Executable File
8 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CURRENT_DOMAIN="khuedoan.com"
|
|
|
|
git grep "${CURRENT_DOMAIN}" -- bootstrap system platform apps | cut -d ':' -f1 | uniq | while read p; do
|
|
sed -i "s/${CURRENT_DOMAIN}/${1}/g" $p
|
|
done
|