Cmd question
Results 1 to 2 of 2

Thread: Cmd question

  1. #1
    Registered User
    Join Date
    Oct 2002
    Posts
    190

    Cmd question

    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

  2. #2
    Registered User CeeBee's Avatar
    Join Date
    Nov 2002
    Location
    USA
    Posts
    2,494
    Code:
    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)

Similar Threads

  1. [RESOLVED] 70-240: LETS DO THIS!!
    By 70-240 in forum Certification
    Replies: 14
    Last Post: February 20th, 2012, 03:35 AM
  2. NVIDIA Driver Updating Question
    By Phrozen in forum Video Adapter/Monitor Drivers
    Replies: 6
    Last Post: April 25th, 2007, 06:53 PM
  3. Question for NooNoo
    By CCT in forum Tech Lounge & Tales
    Replies: 12
    Last Post: January 26th, 2007, 07:22 PM
  4. computer case/ motherboard question
    By Tkcomputer in forum BIOS/Motherboard Drivers
    Replies: 2
    Last Post: October 25th, 2006, 10:22 AM
  5. IP Address Question
    By Pinnacle in forum Tech-To-Tech
    Replies: 6
    Last Post: August 19th, 2006, 07:58 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •