Miguel G. wrote:

> could anyone help me with a very simple script? 
> (it simply doesn't work the  variables stuff)

> set $FN = etc-$(date +%Y-%m-%d)

The first '$' is incorrect. Use:

        set FN = etc-$(date +%Y-%m-%d)

> and also how can I modify this (tar) to retrive only files which 
> I might get as new from $(find ...)

        find ... | tar -cf $FN.tar -T -

-- 
Glynn Clements <[EMAIL PROTECTED]>

Reply via email to