#!/gnu/store/jw9ws4lghfq6a509r2k85dhnwrwmnchq-bash-4.3.33/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 "$@"
