Search:

Type: Posts; User: BkkBonanza; Keyword(s):

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    1,049

    [all variants] Re: Remove directory structure with RSYNC

    If you're worried about starting rsync sessions over and over (slow) then make a temp copy, or tar archive, locally and rsync once afterwards,

    for x in `find ~ -name files*`; do tar -uf work.tar...
  2. Replies
    4
    Views
    1,049

    [all variants] Re: Remove directory structure with RSYNC

    I'm sure rsync doesn't have a built in way to do that.

    You would have to write a command loop like:

    for x in `find ~ -name files*`; do rsync $x server:/backup/; done

    see man find for...
Results 1 to 2 of 2