blob: 8d8f91aa13d4685d67da09af74cc724122bf0bc1 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# We can add the current directory to the front of PATH so that
# sed will invoke gsed (rather than FreeBSD's sed, for example).
# We use this to work around systems with sed != gsed.
exec ${SED:-@GSED@} "$@"
|