Apr 2, 2003 #1 crmayer Programmer Nov 22, 2002 280 US Can somebody tell me what the last part of this command does? doswrite -a -v -D/dev/fd0 /tm/tmp/dirdep/ddeposit ddeposit > /dev/null 2 > &1 I know what happens up until the > /dev/null 2>&1 part. What does this do?
Can somebody tell me what the last part of this command does? doswrite -a -v -D/dev/fd0 /tm/tmp/dirdep/ddeposit ddeposit > /dev/null 2 > &1 I know what happens up until the > /dev/null 2>&1 part. What does this do?
Apr 2, 2003 #2 bi Technical User Apr 13, 2001 1,552 US it sends errors and standard output to /dev/null -- which is "nowhereland". Upvote 0 Downvote
Apr 2, 2003 #3 AIXSPadmin MIS May 3, 2002 633 US Are you asking about '2>&1'? This will redirect standard error to standard out. Upvote 0 Downvote