Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Built in Directive

Status
Not open for further replies.

Letreen

IS-IT--Management
May 15, 2003
7
0
0
US
I am trying to use the default "Unix standard directives" which includes
<< /tmp >>
skip: * .?*

but is seems like I am still getting backups of the /tmp directories on all my unix hosts.

Any suggestions as to what can be causing the problem.
 
Try this instead, if you for instance want to skip all dirs named "tmp" and "TMP" (not the same thing).

<< / >>
+skip: tmp TMP
 
I think you need
<< /tmp >>
+skip: .

(dot after +skip:)
it means "skip all files in current directiry, which is /tmp
 
Om my machine the following is in default unix directive:

<< /tmp >>
skip: .?* *

And no files in /tmp is backed up.
 
The directive is ok. But is /tmp a symbolic link. If so, it woould not be followed according to the 'uasm' manpage.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top