# cmdlet -> some scripts
# Send all output streams to the success output stream
cmdlet *>&1
# cmdlet -> some scripts
# Send all output steams to file, overwriting existing content.
cmdlet *> "file.txt"
# cmdlet -> some scripts
# Send all out streams to file, appending to existing content.
cmdlet *>> "file.txt"