mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
5 lines
77 B
Text
5 lines
77 B
Text
|
#!/bin/sh
|
||
|
sed -e "s/intermediate/edited/g" <"$1" >"$1-"
|
||
|
mv "$1-" "$1"
|
||
|
exit 0
|