Answers for "bash how to append stdout to a file"

1

bash how to append stdout to a file

# Basic syntax:
command >> output_file # Append stdout to output_file

# Note, use > to overwrite file contents and >> to append to a file
# Note, if the output_file doesn't exist, it will be created
Posted by: Guest on October-14-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language