xref: /dflybsd-src/gnu/usr.bin/grep/fgrep/fgrep (revision 4dbc9169a87802069b97d367a6b842d7c7bf839d)
1#!/bin/sh
2grep=grep
3case $0 in
4  */*)
5    dir=${0%/*}
6    if test -x "$dir/grep"; then
7      PATH=$dir:$PATH
8      grep=grep
9    fi;;
10esac
11exec $grep -F "$@"
12