Script to unzip files and Rename the Output-files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script to unzip files and Rename the Output-files
# 1  
Old 11-20-2013
Script to unzip files and Rename the Output-files

Hi all,
I have a many folders with zipped files in them. The zipped files are txt files from different folders. The txt files have the same names. If i try to
find . -type f -name "*.zip" -exec cp -R {} /myhome/ZIP \; it fails since the ZIP files from different folders have the same names and only copies one file per name to the new location.

I have tried option 0ne
Code:
for file in `find $BASEfolder -depth -name "*.zip"`
do
new=$(unzip -l -qq $file | awk '{print $NF}')
#find $Basefolder -type f -name "*.txt"` 

 # Get BSC definition 
 HIERARCHY_3=`cat $new | grep 'SET SYS:SYSDESC' |  awk -F'"' '{ print $4 }'`
 # Get cell definitions
 cCount=`cat $new | grep 'ADD GCELL:CELLID' | wc -l`
 if [ $cCount -gt 4065 ] ; 
 then 
  echo "More cells in BSC than 4065! ($cCount)"  
  exit
 fi


and Option 2
Code:
for file in find . -depth -name "*.zip" -exec /usr/bin/unzip -n {} \;
do
find $Basefolder -type f -name "*.txt"` 

 # Get BSC definition 
 HIERARCHY_3=`cat $file | grep 'SET SYS:SYSDESC' |  awk -F'"' '{ print $4 }'`
 # Get cell definitions
 cCount=`cat $new | grep 'ADD GCELL:CELLID' | wc -l`
 if [ $cCount -gt 4065 ] ; 
 then 
  echo "More cells in BSC than 4065! ($cCount)"  
  exit
 fi

they both failed

Or alternatively how can I find a file in Unix and rename it with a rnadom name

Last edited by Franklin52; 11-20-2013 at 03:13 PM.. Reason: Please use code tags per the Forum Rules
# 2  
Old 11-20-2013
hope this might help you Smilie

Code:
find . -type f -name "*.zip" > /myhome/ZIP/FILE_LIST
cd /myhome/ZIP/
for I in `cat FILE_LIST`
do 
    cp ${I} ${I//\//__}
    gunzip ${I//\//__}
done


Last edited by Scott; 11-20-2013 at 09:22 PM.. Reason: Code tags - for the 12th time in 17 posts
# 3  
Old 11-20-2013
Unzipping files with the same names but in very many different folders..Aim to unzip them and rename

I dont mind renaming them to the creation date. They are text files.

I tried option above Lohith..
Code:
for I in `cat FILE_LIST`
do 
cp ${I} ${I//\//__}
gunzip ${I//\//__}

done
but
Code:
cp ${I} ${I//\//__}

creates the files with the same name while i want them with new random names.

Smilie

I was trying this but the mv cmd error: cannot access file

Code:
#!/usr/bin/ksh
Home=/var/tmp
cd $Home
for zip in `find $Home -depth -name "*.zip"`
do 
file="$(unzip -l -qq "${zip}" | sed 's/.*:[0-9]\+[[:space:]]*//')" 
newname=$(echo "${file}" | sed 's/ /_/g')
mv {$newname} $Home
done

Anyone Kindly.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SBATCH trinity for multiple files and rename/move the output files

Hey guys, I have wrote the following script to apply a module named "trinity" on my files. (it takes two input files and spit a trinity.fasta as output) #!/bin/bash -l #SBATCH -p node #SBATCH -A <projectID> #SBATCH -n 16 #SBATCH -t 7-00:00:00 #SBATCH --mem=128GB #SBATCH --mail-type=ALL... (1 Reply)
Discussion started by: @man
1 Replies

2. Shell Programming and Scripting

Unzip all the files with subdirectories present and append a part of string from the main .zip files

Hi frnds, My requirement is I have a zip file with name say eg: test_ABC_UH_ccde2a_awdeaea_20150422.zip within that there are subdirectories on each directory we again have .zip files and in that we have files like mama20150422.gz and so on. Iam in need of a bash script so that it unzips... (0 Replies)
Discussion started by: Ravi Kishore
0 Replies

3. Shell Programming and Scripting

Using Shell Script in place of Perl script to Unzip the zip files.

Hi Expert, We have some shell scripts which Internally uses Perl Script to Unzip the source zip files which comes to inbound directory. So now our requirement is to avoid the dependency on Perl Script and us Shell Script to unzip the files. I have the Perl script with me attached can some one... (3 Replies)
Discussion started by: naveen.dasu
3 Replies

4. Shell Programming and Scripting

Batch Script To Unzip and Rename File

Hello All, I need help in writing a batch script. I have 100 zip files in a folder. Each zip file has a unique name starting with XYZ_12345.zip Each zip file contains single csv file I would like to batch extract the files and also rename the extracted csv as per the original zip name... (6 Replies)
Discussion started by: rajlakshmi
6 Replies

5. Shell Programming and Scripting

How to unzip files from folder in shell script (ksh)?

I have a folder (C:\shellprg\input\) containing .CSV, .zip, .gz files. 1] I want to find all .zip/.gz files from folder (C:\shellprg\input\). 2] unzip/uncompress files into the same folder (C:\shellprg\input\) through shell script. I am using below commands for unzip files, unzip <filename>... (2 Replies)
Discussion started by: Poonamol
2 Replies

6. Shell Programming and Scripting

Unix Script - Move and Unzip Files

Requirement Details: We have a folder named 'Inbound Files' that has many folders in it containing source files that have to be processed by Informatica system. We have zipped files, text files and csv files in those folders that have to be moved (cut and paste) from 'Inbound_Files' folder to... (3 Replies)
Discussion started by: haralebp
3 Replies

7. UNIX for Dummies Questions & Answers

rename multiple files from search output

Variations of multiple renames seems to come up a lot but i can't find the answer to this situation. Tidying up a directory where people rename files to .working, .bob, .attempt1 & so on. what i am trying to do is: list the file type, & rename from ".whatever" to .fixed. As the ".whatever" is... (5 Replies)
Discussion started by: woodstock
5 Replies

8. Shell Programming and Scripting

Script to unzip specific files

As part of an audit at work I need to review a lot of Windows workstations. One thing I need to do is review all of the .doc files. My problem is that I guessed a number of these files would be in zip archives. This is the case but they are mixed in with a lot of other file types that I am not... (1 Reply)
Discussion started by: stumpyuk
1 Replies

9. Shell Programming and Scripting

unzip particular gzip files among the normal data files

Hello experts, I run Solaris 9. I have a below script which is used for gunzip the thousand files from a directory. ---- #!/usr/bin/sh cd /home/thousands/gzipfiles/ for i in `ls -1` do gunzip -c $i > /path/to/file/$i done ---- In my SAME directory there thousand of GZIP file and also... (4 Replies)
Discussion started by: thepurple
4 Replies

10. Shell Programming and Scripting

Problems writing bash script to unzip files

I'm getting the following errors when I try to write a script to unzip some zip files. When I use the free trial copy of the commerical winzip program, however, they work fine. When I use -l or -t on unzip it indicates no errors. When I use the -o switch interactively from the bash command line it... (1 Reply)
Discussion started by: siegfried
1 Replies
Login or Register to Ask a Question