Difference between revisions of "Standard input (/dev/stdin)"

From wikieduonline
Jump to navigation Jump to search
Line 15: Line 15:
 
  echo "$HOME"
 
  echo "$HOME"
 
  echo hi
 
  echo hi
 +
echo "Command to err but will be redirected to stdout" 1>&2
 
  command_that_pipes_output_to_stderr_but_will_be_redirected_to_stdout
 
  command_that_pipes_output_to_stderr_but_will_be_redirected_to_stdout
  echo bye 1>&2
+
  echo "End script"
  
 
== Activities ==
 
== Activities ==

Revision as of 07:36, 3 November 2022

This article is a Draft. Help us to complete it.

wikipedia:stdin

  • 2>&1
  • &>


https://unix.stackexchange.com/questions/61931/redirect-all-subsequent-commands-stderr-using-exec
#!/bin/bash -

exec > >(tee "$HOME/somefile.log") 2>&1

echo "$HOME"
echo hi
echo "Command to err but will be redirected to stdout" 1>&2
command_that_pipes_output_to_stderr_but_will_be_redirected_to_stdout
echo "End script"

Activities

Related terms

See also

Advertising: