QUOTE (toby @ Feb 19 2009, 05:53 PM)

Ty, perfect. I shall learn about find, it's new to me.
I use "find" very often.
for instance, if you want to perform a backup of a given folder and put it on your tape, you use find this way :
CODE
find . -print |cpio -omBdv >/dev/rmt0
And if you want to copy the whole content of your folder to the remote resource which is nfs-mount on /mnt, use the following :
CODE
find . -print |cpio -pmdulv /mnt/myfolder
Which means that you have to simultaneously learn "find" and "cpio" syntax...

Comment/Reply (w/o sign-up)