1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-08 09:39:24 +02:00

redir dd's stderr

This commit is contained in:
Jim Meyering
2000-08-23 07:49:05 +00:00
parent 0816398823
commit 89f0eb153f
+1 -1
View File
@@ -23,7 +23,7 @@ fi
fail=0
echo abc > in
(dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out || fail=1
(dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out 2> /dev/null || fail=1
case `cat out` in
b) ;;
*) fail=1 ;;