- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar command
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 12:20 AM
09-17-2002 12:20 AM
tar command
I'm trying to make a script in order to perform some incremental backup using tar.
Here is the beginning of my script.
I want to perform a tar file with files contained ina file created with a find command:
#!/bin/sh
BACK_H="/back/backlog"
echo "Creation Date:" > $BACK_H/logdate.log &&
date >> $BACK_H/logdate.log 2> $BACK_H/logerrordate.log &&
echo "Saved files :" > $BACK_H/logsave.log &&
find / -mtime -1 -print >> $BACK_H/logsave.log 2> $BACK_H/logerrorsave.log
I would like to inject files from my $BACK_H/logsave.log file in a new tar file?
How can I perform this?
Thanks in advance
Regards
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 12:23 AM
09-17-2002 12:23 AM
Re: tar command
The fact is that I would like one tar (no xarg issue).
after, i will use the mt command to mark the eof.
Thanks again
Regards
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 12:29 AM
09-17-2002 12:29 AM
Re: tar command
I've just seen the -I
Hope it is working
Regards
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 03:11 AM
09-17-2002 03:11 AM
Re: tar command
tar -rvf abc.sh X.tar
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 03:17 AM
09-17-2002 03:17 AM
Re: tar command
use fbackup
or better yet, search with google, on:
+incremental +backups +tar
and find hits like this:
http://www.linux-backup.net/full_inc.gwif.html
Of course you know that tar has a 2gb limitation, and that you should consider gnu's tar.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 03:48 AM
09-17-2002 03:48 AM
Re: tar command
I think you are talking about the GNU tar program, because the standard tar DOES NOT HAVE AN (I) option, but GNU tar does NOT have an (I) option either!
???
live free or die
harry