Merge branch 'master' of ssh://git.giugl.io/peperunas/nixos
This commit is contained in:
commit
95d8b8405e
@ -187,3 +187,17 @@ create_pr_from_commit() {
|
||||
git stash pop
|
||||
fi
|
||||
}
|
||||
|
||||
anonymize_multiple() {
|
||||
while IFS= read -r line; do
|
||||
result="$line"
|
||||
# Simple sed with multiple patterns
|
||||
echo "$result" | sed '
|
||||
s/github.pie.apple.com/github.com/g;
|
||||
s/Kerosene/org/g;
|
||||
s/kerosene/org/g;
|
||||
s/Shelob/example/g;
|
||||
s/shelob/example/g;
|
||||
'
|
||||
done
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user