1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-06 21:12:38 +02:00

redirect dd's stderr

This commit is contained in:
Jim Meyering
2002-10-05 08:27:45 +00:00
parent 6a9dc978f9
commit ae48cdae26

View File

@@ -23,7 +23,7 @@ cd $tmp || framework_failure=1
echo abcdefgh | tr -d '\n' > big
echo 87654321 | tr -d '\n' > tmp
# Seek 4GB - 8
dd bs=1 seek=4294967288 if=tmp of=big
dd bs=1 seek=4294967288 if=tmp of=big 2> /dev/null
if test $framework_failure = 1; then
echo '$0: failure in testing framework' 1>&2