Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit-content « t7500 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08db9fdd2e68b348d0405aa6a0a465c582624e06 (plain)
1
2
3
4
#!/bin/sh
sed -e "s/intermediate/edited/g" <"$1" >"$1-"
mv "$1-" "$1"
exit 0