Download Learning the bash Shell, 3rd Edition

Transcript
Redirector Function
closed; if n is not specified, the standard
input (file descriptor 0) is used
n>&digit-
Moves the file descriptor digit to file
descriptor n, or the standard output (file
descriptor 1) if n is not specified
n<&digit-
Moves the file descriptor digit to file
descriptor n, or the standard input (file
descriptor 0) if n is not specified; digit is
closed after being duplicated to n
788