mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
5 lines
133 B
Bash
Executable file
5 lines
133 B
Bash
Executable file
|
|
# Recursive find/replace.
|
|
# Syntax: ./find-replace.sh searchtext replacetext
|
|
|
|
egrep -lRZ '$1' . | xargs -0 -l sed -i -e 's/$1/$2/g'
|