Changing the file name while compressing


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Changing the file name while compressing
# 1  
Old 01-11-2013
IBM Changing the file name while compressing

Hi,

Is there any way to change the file name while compressing ? using Compress and gzip and tar ?

Say, I have a file foo.txt - so I have to compress this file and the resultant file name is foo.txt_20130113.gz or foo.txt_20130113.Z

This to be done while performing the compression operation and the UNIX file modification time should be changed to time of creating the compressesd file.

Longback I done using zip / jar command. Unfortunately, I dont have zip or jar installed in my AIX currently.

Any ideas ?

Thanks.
# 2  
Old 01-11-2013
Use -S option to specify the suffix:-
Code:
gzip -S "_20130113.gz" foo.txt

# 3  
Old 01-11-2013
You can use the '-c' option and write to a file name of your choice, this does not replace the original file so you would have to remove it:
Code:
gzip -cvf foo.txt > foo.txt.gz


Or you could immediately after the gzip command run the touch command to change the '.gz' files timestamp:
Code:
gzip -vf foo.txt
touch foo.txt.gz

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Trouble with Shell Script Compressing file

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: You will create a shell script that performs the following action: Use a parameter to pass a file that... (5 Replies)
Discussion started by: Luvs2drnk
5 Replies

2. Shell Programming and Scripting

Compressing old files as zip file through script

I have below files in foler one/archive> one. txt 6/21/2013 two txt 7/23/2013 three.txt 6/20/2013 I wanted to move all the old files (>30 days) compressing single .zip file into one/archive/ as below two txt 7/23/2013 oldfiles.zip 6/21/2013 Please provide... (6 Replies)
Discussion started by: Ganesh L
6 Replies

3. Shell Programming and Scripting

Compressing files

I need help to do a script that will compress a file that's bigger than 5000 octets and won't overwrite the previous compress file. lets say I have mylogfile.log and I would compress it I would become mylogfile. 1. log and if I would compress again mylogfile.log it would be mylogfile. 2.... (8 Replies)
Discussion started by: Froob
8 Replies

4. Shell Programming and Scripting

Issue with compressing

I have the following script to archive and compress the zip files created by my jira application, on a daily basis. But the compression seems to be not working. Each zip file is of size 103 MB. When I archive it, its coming close to 3-4 gb. But when I use gunzip or bzip2 the size is not getting... (4 Replies)
Discussion started by: Tuxidow
4 Replies

5. Shell Programming and Scripting

Is there any way to find the compressed size of a file without compressing it in linux

i need to backup a directory from one partition to another and and compress that directory after backing up, so i need to predict the compressed size of the directory with out actually compressing it, to check whether the space is available in the destination partition to accommodate the zipped... (2 Replies)
Discussion started by: Kesavan
2 Replies

6. Shell Programming and Scripting

Reading/Compressing of log file

Hello All Posted a similar thread in some other section too. Regrets if this section is not suitable for this post. Request all the members to be tolerant as i'm a newbie here :) Coming to the topic : I've this huge log files of size 20GB-30 GB in my unix server. I want to analyse the log... (2 Replies)
Discussion started by: sgbhat
2 Replies

7. UNIX for Dummies Questions & Answers

Compressing several directories

Could someone help with the easiest command to compress several directories and files? For example, I want two directories: /var/www/logs/ and /var/www/zones/ and this file: /var/www/messages to be compressed by tar/zip to a specific output directory like: /var/www/backup.extension ... (1 Reply)
Discussion started by: holyearth
1 Replies

8. UNIX for Dummies Questions & Answers

compressing a directory

I have a pretty large directory on a backup hard drive. I have Tiger for an OS, what would be the best way to compress this directory. there is a large number of files inside in addition if that makes a difference any help appreciated hopefully thanks in advance (2 Replies)
Discussion started by: cleansing_flame
2 Replies

9. UNIX for Dummies Questions & Answers

Compressing folders

Hi, Is there any way to compress folders as such? May look simple, but I have a folder, which inturn has several folders/files in it. Is there any way to compress this parent folder? Thanks in advance, Mohan. (4 Replies)
Discussion started by: mohanprabu
4 Replies

10. Shell Programming and Scripting

compressing a string

HI, let say I have file having name "skp 27.doc". There is space between skp and 27. now I want to rename this file . So please let me know how is it possible? one more issue ............. let say a=5 echo $a output is 5. Again a= 4 echo $a wha will be the output? (1 Reply)
Discussion started by: surjyap
1 Replies
Login or Register to Ask a Question