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