summaryrefslogtreecommitdiffstats
path: root/bin/sed
blob: 615bd1c6f8a5a6198dfa9fe1df19e1eed4bf6d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
 
if [[ -n ${ESED} ]]; then
exec ${ESED} "$@"
elif type -p gsed > /dev/null ; then
exec gsed "$@"
else
old_IFS="${IFS}"
IFS=":"
 
SEARCH=${PATH#*:}
for path in $SEARCH; do
if [[ -x $path/sed ]]; then
exec $path/sed "$@"
exit 0
fi
done
 
IFS="${old_IFS}"
fi
 
exit 1