Search files from sub folders


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Search files from sub folders
# 1  
Old 10-15-2009
Search files from sub folders

A folder contains 30-50 subfolders generated on a daily basis, each subfolder contains more than 10-20 files of .html.gz files format. we have to manually convert the .html.gz file to .html format on a daily basis available in all the sub folders.

the procedure we are following is

copying all the .gz files into the temp folders
mkdir temp
cp *.* temp
gunzip *.gz

moving the .html to the sub folder

for i in `ls -1`
do
mv $i $i.html
done

goto created temp folder
move all those *.gz files to previous directory and then check for that subfolder is having .html files and *.gz file
Repeat the same for all subfolders in a directory and check for next main directory.

As this is taking more time to do for all the subfolders.

Can some please write a script to do this activity . Please do the needful
# 2  
Old 10-15-2009
Quote:
Originally Posted by Nareshp
Can some please write a script to do this activity . Please do the needful
(insert I don't like terms like "write a script" or "do the needful" here)

If the question you're asking is "how do I 'convert' a lot of .html.gz files into .gz files?" then, using gunzip:

Code:
cd /directory_with_all_my_html_gz_files
find . -name *.gz | xargs gunzip


Last edited by Scott; 10-15-2009 at 05:56 PM..
# 3  
Old 10-15-2009
The script examples posted do not match the anotation posted. As "scottn" implies, please post what you are trying to do (with examples) ?
# 4  
Old 10-22-2009
Hi Scottn,

The script posted by you does not match , please post the correct script
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Loop through the folders and search for particular string in files

Hello, Opearting System Environment : HP Unix B.11.31 U I look for script to On specific folders list On specific filelist Search for given string For Example : r48_buildlib.txt contains wpr480.0_20161027 wpr480.0_20161114 wpr481.0_20161208 wpr482.0_20161222... (4 Replies)
Discussion started by: Siva SQL
4 Replies

2. Shell Programming and Scripting

How to copy files/folders and show the files/folders?

Hi, So i know we use cp -r as a basic to copy folders/files. I would like this BUT i would like to show the output of the files being copied. With the amazing knowledge i have i have gone as far as this: 1) find source/* -exec cp -r {} target/ \; 2) for ObjectToBeCopied in `find... (6 Replies)
Discussion started by: Imre
6 Replies

3. Shell Programming and Scripting

search data from text file in different folders

I am fairly new to unix scripting, the problem is i can understand the unix script. but i fail to write. I do not know where to start and how to end. I am sure this forum will help to achive my dream scriptings in unix. Thanks in adv for your help. Here I need.. I have list of columns in one... (2 Replies)
Discussion started by: dsnrhdy
2 Replies

4. Shell Programming and Scripting

Script to search specific folders dates /mm/dd/ structure

Hi, I have a script that handles a huge amount of log files from many machines and copies it into a SAN location with the following directory structure: /SAN/machinenames/yyyy/m/d so for example /SAN/hosta/2011/3/12/files* Now I am writing a bash script to search for files between to date... (4 Replies)
Discussion started by: GermanJulian
4 Replies

5. UNIX for Dummies Questions & Answers

Searching for folders/parent folders not files.

Hello again, A little while back I got help with creating a command to search all directories and sub directories for files from daystart of day x. I'm wondering if there is a command that I've overlooked that may be able to search for / write folder names to an output file which ideally... (2 Replies)
Discussion started by: Aussiemick
2 Replies

6. Shell Programming and Scripting

Search and Replace text in folders and Subfolders

Hi, I need help in writing a script to search a particular text in multiple files present in folders and sub folders and replace it with another string which also has special characters like '&', '|', etc.. I know sed command will be used to replace the text but i'm not sure how to use it for... (5 Replies)
Discussion started by: Asheesh
5 Replies

7. Shell Programming and Scripting

How to exclude folders/files in search?

I have a directory with about 20 folders and many different types of files. I need to search for files and gzip in all the directories except for 1 directory. How do you exclude a directory? (2 Replies)
Discussion started by: bbbngowc
2 Replies

8. UNIX for Dummies Questions & Answers

How do I search while skipping folders?

I have a directory that contains some specific files. I want to find all the files and copy them to a different directory, however the files are in /dir1/dir2/dir3/filedir/archive. In ~/filedir contains about 100 directories that contains an archive directory where the files I need are. How can I... (6 Replies)
Discussion started by: bbbngowc
6 Replies

9. Shell Programming and Scripting

How to search a file within the sub folders?

Hi All, I'm looking for the UNIX shell script to search a file having some characters within a particular path which intern have many sub folders in it. Regards Anil (7 Replies)
Discussion started by: kleanil
7 Replies

10. Shell Programming and Scripting

To search for folders alone?

hi Guys, Here i am again,, I need to search for folders alone present in the system,, I tried this command,, find / -name "name of folder" -print But am getting the name of the files also.. i want only the folders name Thanks guys,,, I know i have to repeat the last statement... (3 Replies)
Discussion started by: mac4rfree
3 Replies
Login or Register to Ask a Question