Mail Archives: cygwin/2004/06/03/17:38:04
On Thu, 3 Jun 2004, Will Senn wrote:
> Hi,
>
> I am doing backups with tar on XP. I thought that I could touch a file
> when I did a full backup and then use find with newer to only back up
> files that are newer than the touched file:
>
> ~ touch /cygdrive/i/backups/full_backup
> ~ find /cygdrive/d/sandbox -newer /cygdrive/i/backups/full_backup !
> ~ -type d -print | sed -e "s/\ /\\\\ /g"`
>
>
> this command produces the following list of files:
>
> ~ /cygdrive/d/sandbox/another\ test.txt
> ~ /cygdrive/d/sandbox/test.txt
>
>
> 'another test.txt' is a file with an embedded space (I figured I
> needed to escape the space, hence the sed)
>
> The problem is this, when I use the output of this command as the
> input of another it complains. ie.
>
> ~ $ ls -l `find /cygdrive/d/sandbox -newer
> ~ /cygdrive/i/backups/_sandbox.full ! -type d -print | sed -e "s/\
> ~ /\\\\ /g"`
>
> ~ ls: /cygdrive/d/sandbox/another: No such file or directory
> ~ -rwx------+ 1 wsenn None 0 Jun 3 14:45 /cygdrive/d/sandbox/test.txt
> ~ -rw-r--r-- 1 wsenn None 69 Jun 3 15:26 test.txt
>
> Any help would be appreciated.
That's what xargs was invented for. Try
find /cygdrive/d/sandbox -newer /cygdrive/i/backups/_sandbox.full ! -type d -print0 | xargs -0 ls -l
> Here's the tar command I planned on using:
>
> ~ tar czf /cygdrive/i/${TODAY}_I_sandbox.tgz `find
> ~ /cygdrive/d/sandbox -newer /cygdrive/i/backups/full_backup ! -type
> ~ d -print | sed -e s/\ /\\\\\ /g`
>
> Later,
> Will
Here you can use something like
find /cygdrive/d/sandbox -newer /cygdrive/i/backups/_sandbox.full ! -type d -print0 | xargs -0 tar czf /cygdrive/i/${TODAY}_I_sandbox.tgz
or even
find /cygdrive/d/sandbox -newer /cygdrive/i/backups/_sandbox.full ! -type d -print0 | tar -T- --null -czf /cygdrive/i/${TODAY}_I_sandbox.tgz
HTH,
Igor
--
http://cs.nyu.edu/~pechtcha/
|\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu
ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com
|,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D.
'---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow!
"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster." -- Patrick Naughton
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
- Raw text -