repo.or.cz
/
dotfiles_afify.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vim, gitconfig, update.sh
[dotfiles_afify.git]
/
.scripts
/
find_replace_word.sh
blob
0f4b93b30b735228716c3198345907a192feeee6
1
#!/bin/sh
2
3
dir
=
$1
4
old_word
=
$2
5
new_word
=
$3
6
7
find
"
$dir
"
-type
f
-exec
sed
-i
"s/
$old_word
/
$new_word
/g"
{} +