Find the answer to your Linux question:
Results 1 to 3 of 3
New to Linux, does anyone know if there is an xcopy equivalent for the linux command line? If there isn’t does anyone know where I could find the code to ...
  1. #1
    Just Joined!
    Join Date
    Sep 2008
    Posts
    1

    xcopy command line equivalent

    New to Linux, does anyone know if there is an xcopy equivalent for the linux command line?

    If there isn’t does anyone know where I could find the code to do it without learning unix from scratch?

  2. #2
    Linux Engineer Thrillhouse's Avatar
    Join Date
    Jun 2006
    Location
    Arlington, VA, USA
    Posts
    1,377
    I believe you're looking for rsync.

  3. #3
    Linux Guru
    Join Date
    Nov 2007
    Location
    Córdoba (Spain)
    Posts
    1,513
    Quote Originally Posted by Malby View Post
    New to Linux, does anyone know if there is an xcopy equivalent for the linux command line?

    If there isn’t does anyone know where I could find the code to do it without learning unix from scratch?
    Regular "cp" will do all that xcopy does, and much more. rsync is ideal if you want to synchronize two directory trees, though it can also be used as a copy tool.

    To get additional info about a given command you can use "man" to see its manual page.

    Code:
    man cp

Posting Permissions

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