anyone know if there are any difference in terms of functions between these 2 commands
Thanks for any info
time /T >> backup_log.txt
time /T > backup_log.txt
Printable View
anyone know if there are any difference in terms of functions between these 2 commands
Thanks for any info
time /T >> backup_log.txt
time /T > backup_log.txt
This will output the result of the command (namely the current time) in a file called backup_log.txt, appending it (or creating it if it doesn't exist)Code:time /T >> backup_log.txt
This will output to backup_log.txt, overwriting any content it may have (or creating it if it doesn't exist)Code:time /T > backup_log.txt