grep-matches-NUL 81 B

12345678
  1. set +e
  2. echo -e '\0' | busybox grep .
  3. if [ $? != 0 ] ; then
  4. exit 0;
  5. fi
  6. exit 1;