script to create tar file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers script to create tar file
# 1  
Old 12-03-2003
Error script to create tar file

hello, im a newbie in unix scripting. can someone pls send me a sample script that will tar files in the folders of a specific directory, but will exclude specific files, and afterwards, will ftp the tar into another server.

for example:
in this directory, pshrprod:/opt/psoft/weblogic/818sp9_80

the following files and folders will be tar'd (this are not all the files/folders in this directory)

copyright.html
license.txt
license.html
classes --this folder also has files inside--
src

but will exclude these files in these directories:

Please exclude (aonprod08)pshrprod:/opt/psoft/weblogic/818sp9_80/psftaccess.log and /opt/psoft/weblogic/818sp9_80/myserver/access.log

my question is: if the files will be tar'd where will the tar file be located?

when the tar file is created, the script should be able to ftp the tar file to another server. (is this possible?)

also, is it possible to enable the script to run at a specific day and time?

hope someone out there replies to me ASAP.

thanks a lot
# 2  
Old 12-03-2003
The below script will archive up your data and rcp it over to a remote box, rcp is easier then FTP. You will need to change the below variables to meet your needs...

Then add the below cron entry using crontab -e this will run the script every day at 23:55, you will also need to amend the script location. Make sure you set the correct permissions on the scipt, ie chmod 700 /scripts/archive_data.ksh.

55 23 * * * /scripts/archive_data.ksh


#!/usr/bin/ksh
#Script Variables - CHANGE IF NEEDED##
#
include=/tmp/tar_include.log
output=/tmp/archive.tar
#
#Variables for local box
#
locusername=davek
hostname=c06159
#
#Variables for remote box
#
remusername=davek
destination=www.whatever.co.uk
remlocation=/tmp/coppied.archive.tar
#
##########################

#Set Include Log for Tar
> $include
ls /opt/psoft/weblogic/818sp9_80 | grep -v psftaccess.log | grep -v myserver >> $include

#Create Tar Archive
tar cf $output -I $include

#Now rcp over to destination
rcp -p $locusername@$hostname:$output $remusername@$destination:$remlocation

exit
#END
# 3  
Old 12-03-2003
just a suggestion, instead of only ls use ls -1
(note it is numeric 1)
ls -1 ensures that each output line contains only one file name
although once you pipe the output of ls, generally one filename is displayed on each line, but not sure if that is always the case.
so better to be safe
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to create a TAR File in a Custom Destination Directory?

I want to create the tarzip file into a destination directory, i am in /var/sftp/home/archive/rquadri directory and i am using below command. However it is creating the file in the /var/sftp/home/archive/rquadri directory itself instead of /tmp, may i please know how do i resolve this. tar -cvzf... (5 Replies)
Discussion started by: Ariean
5 Replies

2. UNIX for Dummies Questions & Answers

How do I create a tar file for only dir and its subdir structures??

How do I create a tar file for only dir and its subdir structures?? (4 Replies)
Discussion started by: vx04
4 Replies

3. HP-UX

Unable to create a tar file due to link

Hi, I am trying to tar a directory structure. but unable to do due to a symbolic link. Please help indomt@behpux $ tar -cvf test.tar /home/indomt a /home/indomt symbolic link to /dxdv/03/ap1dm1 Thanks (1 Reply)
Discussion started by: nag_sathi
1 Replies

4. Shell Programming and Scripting

Create tar file excluding all hard links

I have a problem with tar. Taring a folder with a lot of contents, causes the tar to contain hard links to some files, seen with the same name but 0 in size. The hard links don't exist in the first place. How can I prevent that from happening? I am using the -T option with either -n or... (2 Replies)
Discussion started by: Tribe
2 Replies

5. UNIX for Dummies Questions & Answers

How to create .tgz file without creating .tar file?

Hi, Could anyone help me in providing command to generate .tgz file without creating .tar file? currently i am using below command for doing the same but if tar file has big size and there is no space in drive then tgz file will not be generated. I want to generate tgz file directly without... (4 Replies)
Discussion started by: Pawan Kumar
4 Replies

6. Shell Programming and Scripting

Create tar file

Following are the list of files available in the dataout directory a1.txt.gz a2.txt.gz b3.txt.gzStep 1: now the tar file needs to be created as follows. tar -cvf ab.tar *.gzAll the files with extn .gzg has to be bundled in the tar file. Once the tar file is created, the files which are... (9 Replies)
Discussion started by: kmanivan82
9 Replies

7. UNIX for Advanced & Expert Users

Create corrupted *.tar.gz file ?

Hello. I`m writing a bash script who archive log files and send them to backup server. I need some kind of checking mechanism for *.tar.gz files. I found something like: gunzip -t file.tar.gz //Not output from it. And for tar: tar tf file.tar.gz //Only lists archive 1.) I need make a... (3 Replies)
Discussion started by: jabalv
3 Replies

8. Shell Programming and Scripting

To write a shell script which groups files with certain pattern, create a tar and zip

Hi Guru's, I have to write a shell script which groups file names based upon the certain matching string pattern, then creates the Tar file for that particular group of files and then zips the Tar file created for the respective group of files. For example, In the given directory these files... (3 Replies)
Discussion started by: rahu_sg
3 Replies

9. Solaris

Find files older than x days and create a consolidated single tar file.

Hello, I need help in finding files older than x days and creating a single consolidated tar file combining them. Can anyone please provide me a script? Thanks, Dawn (3 Replies)
Discussion started by: Dawn Bosch
3 Replies

10. UNIX for Advanced & Expert Users

How to create a Tar of multiple Files in Unix and FTP the tar to Windows.

Hi, On my Unix Server in my directory, I have 70 files distributed in the following directories (which have several other files too). These files include C Source Files, Shell Script Source Files, Binary Files, Object Files. a) /usr/users/oracle/bin b) /usr/users/oracle... (1 Reply)
Discussion started by: marconi
1 Replies
Login or Register to Ask a Question