Zipping and moving


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Zipping and moving
# 1  
Old 09-28-2011
Zipping and moving

Hi,

I have got the script which find out the file that was modified 3 days ago now i want that all the files which fall into this category to be get zipped and then send to another directory...plz can u suggest me for that or any commands
# 2  
Old 09-28-2011
For zipping use the zip-command or gzip, bzip2, compress, ....
For "sending" files to another directory try the cp or mv commands. The 1st will copy, the 2nd will move the files.
Reading a list of files could be done with a combination of a while-loop together with the read command for example.

Generally you should read a shell scripting to tutorial to start learning about basic commands and shell usage. For example: Linux Shell Scripting Tutorial - A Beginner's handbook
# 3  
Old 09-28-2011
error while zipping

Hi ,

I am using this command to find out the files modified within 3 days and now I want to send those files into another directory named test ,i want that inside test directory the zip file should reside .... but my this below command is not working..can u correct the below command
Code:
find /home/499633/scripts -iname "*.txt" -mtime -3| tar -cvzf /test/backup.tgz directory


Moderator's Comments:
Mod Comment Video tutorial on how to use code tags in The UNIX and Linux Forums.

Last edited by Franklin52; 09-28-2011 at 05:46 AM.. Reason: Please use code tags, thank you
# 4  
Old 09-28-2011
Code:
 
find /home/499633/scripts -iname "*.txt" -mtime -3| xargs tar -cvzf /test/backup.tgz

# 5  
Old 09-28-2011
Hi,

I have written this command in a script file and then executing that script but it is showing error
# 6  
Old 09-28-2011
can you post the script and the error message
# 7  
Old 09-28-2011
command to copy files

Hi ,

Now i want to copy those filter files into the test directory can you please provide me the command to copy those selected files into the test directory and later I will zip that test folder later.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Zipping

Good Morning, I'd like to archive an old user's files in the home directory on Solaris 9 Will this work? cd home tar -zcvf jsmitharchive.tar.gz jsmith/ ---------- Post updated at 09:37 AM ---------- Previous update was at 09:33 AM ---------- Also- is the last /necessary (after... (4 Replies)
Discussion started by: Stellaman1977
4 Replies

2. Shell Programming and Scripting

Help with grouping and zipping

Hi can you please help with the below ? source file: Column1,Column2,Column3,Column4 abc,123,dir1/FXX/F19,1 abc,123,dir1/FXX/F20,1 abc,123,dir1/FXX/F23,2 abc,123,dir1/FXX/C25,2 abc,123,dir1/FXX/X25,2 abc,123,dir1/FXX/A23,3 abc,123,dir1/FXX/Z25,3 abc,123,dir1/FXX/Y25,4 I want to... (3 Replies)
Discussion started by: paul1234
3 Replies

3. Shell Programming and Scripting

Zipping without extension

I currently have a code that find and zip all files in current folder and zip it, the problem is the name of the zip will include the extension as well and I don't want it. for ex: Volvo-red.swf -> Volvo-red.swf.zip find . -maxdepth 1 -type f ! -name ".*" -exec bash -c 'zip -r "$0.zip"... (6 Replies)
Discussion started by: Frozen77
6 Replies

4. Shell Programming and Scripting

Zipping files

Hi Guys, The script below works but it creates a zip folder under 123_arch.zip -- test1 -- orig1.txt -- orig2.txt -- orig3.txt -- orig4.txt I don't want the sub directory test1 but everything under the base *arch name I can not create a long name with... (4 Replies)
Discussion started by: GaryP1973
4 Replies

5. UNIX for Dummies Questions & Answers

Zipping the file when moving

Hi, I have a file a.txt, I am moving the file from my source location (/root/onw/src) to target folder(root/byl/src). My target folder has already a file by name a.txt..,while moving can I see if this file a.txt is existing then move it to archive folder(/root/byl/arc) zip and add time stamp to... (2 Replies)
Discussion started by: shruthidwh
2 Replies

6. Shell Programming and Scripting

Help with zipping files

Hi, I have come across a requirement in which I need to zip files. This is fine but the requriement has one conditions like below: One .z file can not have more than 10,000 files Now in the directory I have several files liek below: aaa_file_10_00001.txt aaa_file_10_00002.txt... (6 Replies)
Discussion started by: angshuman
6 Replies

7. Shell Programming and Scripting

zipping files

Dear Experts, I need a script which will zipped the files older than 2 days. but i dont want to use find . * -mtime 2. Is there is any other method to achive this task. i will ececute the script daily. Regards, (3 Replies)
Discussion started by: shary
3 Replies

8. UNIX for Dummies Questions & Answers

Zipping

Hi In unix i want to zip the files in a directory excluding *.dmp, *.log, *.lst, *.out files in that directory. pls let me know what command to use. $zip ........ ? Thanks (1 Reply)
Discussion started by: dreams5617
1 Replies

9. Shell Programming and Scripting

Zipping the dir

Hi, Ex: Directory /u01/par If a directory contains all the below files: a.lst b.lst c.lst d.lst ......etc i have 50 files in this directory. How to(command to) zip all the files in this directory into a single zip file. Thanks (1 Reply)
Discussion started by: dreams5617
1 Replies

10. UNIX for Dummies Questions & Answers

zipping across platforms

I saw a few posts on this, however, I am getting an error and don't see this particular issue. Not right off anyways.... We moved from digital OS to solaris 9 in Jan. On the old platform, I could gzip my files, ftp them to my win2000 desktop via hummingbird and then unzip them to view. Now,... (8 Replies)
Discussion started by: MizzGail
8 Replies
Login or Register to Ask a Question