• If the output file already exists, the user must be prompted whether to overwrite the existing file or create a new file code example
Example: how to overwrite file linux cli
# The >> redirection operator will append lines to the end of
# the specified file, where-as the single greater than > will
# empty and overwrite the file.
echo "text" > 'Users/Name/Desktop/TheAccount.txt'