summaryrefslogtreecommitdiff
path: root/bin/sed
blob: d4b1d87b2abe173d7e674c949f6eec152add1cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
 
scriptpath="${BASH_SOURCE[0]}"

if [[ -n ${ESED} ]]; then
	exec ${ESED} "$@"
elif type -p gsed > /dev/null ; then
	exec gsed "$@"
else
	old_IFS="${IFS}"
	IFS=":"
 
	for path in $PATH; do
		[[ ${path}/sed == $scriptpath ]] && continue
		if [[ -x $path/sed ]]; then
			exec $path/sed "$@"	
			exit 0
		fi
	done
	
	IFS="${old_IFS}"
fi
 
exit 1