#!/gnu/store/kh23ancxx8qzd0frnh6w6ql5zyjs3j2a-bash-4.3.39/bin/bash
grep=grep
case $0 in
  */*)
    dir=${0%/*}
    if test -x "$dir/grep"; then
      PATH=$dir:$PATH
      grep=grep
    fi;;
esac
exec $grep -F "$@"
