mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
6 lines
133 B
Bash
6 lines
133 B
Bash
![]() |
|
||
|
# Recursive find/replace.
|
||
|
# Syntax: ./find-replace.sh searchtext replacetext
|
||
|
|
||
|
egrep -lRZ '$1' . | xargs -0 -l sed -i -e 's/$1/$2/g'
|