Revision: 3949
Updated Code
at October 8, 2007 04:22 by therobot
Updated Code
sed -i.bak s/check_http_redirect_temporarily/check_http_redirect/ *
Revision: 3948
Updated Code
at October 8, 2007 04:14 by therobot
Updated Code
for i in *; do sed s/oldtext/newtext/ < $i > $i.mod; mv $i.mod $i; done;
Revision: 3947
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 8, 2007 04:13 by therobot
Initial Code
for i in *; do sed s/check_http_redirect/check_http_redirect_temporarily/ < $i > $i.mod; mv $i.mod $i; done;
Initial URL
Initial Description
Initial Title
Replace some text in multiple files in a directory
Initial Tags
Initial Language
Bash