Tweak formatting, code, & wording

pull/99/head
terminalforlife 4 years ago
parent 7d524d8205
commit 2d32a8369c

@ -1,17 +1,17 @@
# exec # exec
# #
# Shell builtin command # Shell builtin command
# It can start a new process to replace the shell, without a new process creation. # It can start a new process to replace the shell, without a new process
# It can make redirections take effect in the current shell # creation. It can make redirections take effect in the current shell
# Redirect the output of an entire shell script within the script itself # Redirect all STDOUT from within a script to the given file.
# Only stdout:
exec > foo.log exec > foo.log
# Redirect the output of an entire shell script within the script itself # Redirect all of both STDOUT & STDERR from within a script to the given file.
# Stdout and stderr:
exec > foo.log 2>&1 exec > foo.log 2>&1
# Or, if on bash(1), this syntax is also viable:
exec &> foo.log
# Copy output to a log file # Copy output to a log file, allowing the outputs to still work as usual.
exec > >(tee -ia foo.log) exec > >(tee -ia foo.log)
exec 2> >(tee -ia foo.log >&2) exec 2> >(tee -ia foo.log >&2)

Loading…
Cancel
Save