Difference between revisions of "Standard input (/dev/stdin)"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
* <code>[[sudo]] -S</code> or <code>[[sudo]] --stdin</code> | * <code>[[sudo]] -S</code> or <code>[[sudo]] --stdin</code> | ||
+ | |||
+ | |||
+ | 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 | ||
+ | date | ||
+ | date +%F | ||
+ | echo bye 1>&2 | ||
== Activities == | == Activities == |
Revision as of 07:34, 3 November 2022
This article is a Draft. Help us to complete it.
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 date date +%F echo bye 1>&2
Activities
- Compress data from
stdin
:echo "DATA TO COMPRESS" | xz --verbose > file.xz
docker logs 2>&1 | grep TEXT
Related terms
See also
echo
,print, printf
,tput
,logger
,write-output, echo -e, /dev/stdout, banner
- Standard streams:
/dev/stdin
,/dev/stdout
,/dev/stderr
,/dev/null
, File descriptor,set -x, 2>&1, stdbuf
Bash [ -c ]
,alias
,&&
, Bash history, Autocompletion,set
,unset
,export
,.bash_aliases, .bashrc and .bash profile
,PS1
,echo
,brace expansion
, Function,shopt
,trap
,set -e
,source
,PATH
,complete
,disown
,.hushlogin
,.bashrc
,builtin
,eval
,set
,$PATH
,$HOME
,TZ
,.profile
,-e, -i
,Builtin (Bash)
,mapfile
,~
, return (Bash), for, until,declare, dirname, basename, functions.sh
, Bash arithmetic expansion,shift, bash --rcfile, readonly, $1, $@
Advertising: