9 lines
197 B
Plaintext
9 lines
197 B
Plaintext
|
#!/bin/sh
|
||
|
# Use grep and sed to replace $1 with $2 recursively and print what is done
|
||
|
grep --null --recursive --files-with-matches "$1" |
|
||
|
xargs -0 sed -i "/${1}/{
|
||
|
s//${2}/g
|
||
|
w /dev/stdout
|
||
|
}"
|
||
|
|