Linux CLI - Pipes and Redirection
Which command correctly appends the output of
date to a file named timestamps.log?date to a file named timestamps.log?> overwrites a file, >> is invalid, and >> is not standard syntax.>> is invalid; >> is not recognized; >> is a typo. The correct append operator is > .date >> timestamps.log appends output to the file without overwriting.> [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions