Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: c522f061d551c9bb8684a7c3859b2ece4499b56b authored by Junio C Hamano on 17 February 2020, 04:37:38 UTC
Git 2.25.1
Tip revision: c522f06
edit-content
#!/bin/sh
sed -e "s/intermediate/edited/g" <"$1" >"$1-"
mv "$1-" "$1"
exit 0
back to top