Welcome to mirror list, hosted at ThFree Co, Russian Federation.

grep-matches-NUL « grep « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 082bd8700356b2f85798ddd85fe36aff18dc007e (plain)
1
2
3
4
5
6
7
8
set +e
echo -e '\0' | busybox grep .
if [ $? != 0 ] ; then
	exit 0;
fi

exit 1;