Searching and Extracting Data from Files and Archiving Flashcards
What does > do?
Creates a new file containing standard output.
What does»_space; do?
Appends the existing output to an existing file.
What does 2> do?
Creates a new file containing any standard errors.
What does 2» do?
Appends standard error to an existing file.
What does &> do?
Creates a new file contains the standard output and the standard error.
What does < do?
Sends the content of a specified file as input back into the standard input
What does «_space;do?
Accepts text on the following lines as standard input
What does <> do?
Specified file can be used for standard input and standard output.
What does <> do?
Specified file can be used for standard input and standard output.