Search through subfolders and move them into separate folder on the base of file size


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Search through subfolders and move them into separate folder on the base of file size
# 1  
Old 10-30-2009
Question Search through subfolders and move them into separate folder on the base of file size

Hello guys
I am sure that you will help me on this issue as you did earlier:Smilie
Scenario :
I have a folder named "XYZ". It consist many sub-folders and subfolder contain severals files. there may be abc.dat in each subfolder. Now i want to seperate subfolders on follwing conditions-
if abc.dat > 1kb (size) move all subfolders to folder healthy
if abc.dat <=1kb move all subfolders to folder unhealty
if there is no abc.dat move all subfolders to folder others.
So at the end we have 3 sub-folders named healthy, unhealty and others containing subfolders with differnt condition.

Please write a shell script for this .
Thanks in advance.
# 2  
Old 10-30-2009
Quote:
Originally Posted by infiant
Please write a shell script for this .
.
do your own work. Show some effort.. what have you got ? if you are lost, here's a hint. you can use the find command with its options to find size, etc. check the man page. read the documentation.
# 3  
Old 10-30-2009
i am sorry but i would really appreciate if you give me the solution
# 4  
Old 10-30-2009
Quote:
Originally Posted by infiant
i am sorry but i would really appreciate if you give me the solution
i/we will give solution to those who put in effort. Also, i have been very kind to give you a hint already. another hint: use find command's -size option to find file sizes....so now, pull up your socks and start the ball rolling...
# 5  
Old 10-30-2009
if you don't have capability to solve this why u r wasting my time.
# 6  
Old 10-30-2009
He have the capability to solve but we are not here for answering the questions in the way you asked(unless you show some effort from your side). First learn to give respect to the senior forum members.

Read the forum rules before further posting.
# 7  
Old 10-30-2009
Hammer & Screwdriver

How do you know that he having capability to do this. Different people have different capability and as far as mine is concern i am not mad to just post my problem for fun. Please try to understand . I already tried but cant solve it.
hope you will give me the solution. and sorry for any misunderstandingSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

UNIX utility to find difference in folder, file and contents of file against a base version

Hi, I am trying to find out whether there are any Unix utilities that compares folders, files and contents within the file and provides a comprehensive report. The comparison can be against base version of a folder and file with content. Can you please let me know of such a utility? Thanks,... (6 Replies)
Discussion started by: Sripathi_ks
6 Replies

2. Shell Programming and Scripting

Move specific folders and subfolders in a directory

I am trying to move specific folders and subfolders within a directory using the below. I can see the folders to move and they are at the location, but I am getting an error. Thank you :). mv -v /home/cmccabe/Desktop/NGS/API/6-10-2016{bam/{validation,coverage},bedtools /media/cmccabe/"My... (6 Replies)
Discussion started by: cmccabe
6 Replies

3. Red Hat

Separate the apache user file and move or copy some were

Hi all, I'm Using Centos 6.4 /opt/my_aplication/entry/data/0/ There are Thousands of files in this Directory, Only i need to copy or move the apache User's file from this to /tmp/backup , I have listed apache user's file using find . -user apache -type f , its gave me the only apache... (2 Replies)
Discussion started by: babinlonston
2 Replies

4. Solaris

Move files to another folder base on DU

Hi, I want to move files like *.txt to another filesystem on the same server only when the disk usage reaches 80% or more. But need to keep the latest 5 files. After that delete from the original. How to proceed? Please help Gav... (5 Replies)
Discussion started by: Gavisht
5 Replies

5. Shell Programming and Scripting

want to move set of file from one folder to another folder

Hi all, let me explain my requirments i am having 5 folder with different name for eg) abc , cdf , efd, rtg, ead each 5 folders contain 15 files i want to move 10 files to some other folder, remain 5 files should be there in the same folder. give me some suggestion on this. (6 Replies)
Discussion started by: natraj005
6 Replies

6. UNIX for Dummies Questions & Answers

Search current folder and subfolders with grep

Hello, Neither ‘Grep -r' nor ‘grep -R' is working in my environment. (Searching for a text pattern in the files) Any suggestions... Using SunOS 5.9 Thanks, Trinanjan. (1 Reply)
Discussion started by: bhanja_trinanja
1 Replies

7. Shell Programming and Scripting

Search in folder and subfolders

How can this be done? I mean, I want to search for all *png *jpg *bmp files in my ~/Pictures/ folder....How can I list them? Thank you geeks :) :b: (2 Replies)
Discussion started by: hakermania
2 Replies

8. Shell Programming and Scripting

File Management: How do I move all JPGS in a folder structure to a single folder?

This is the file structure: DESKTOP/Root of Photo Folders/Folder1qweqwasdfsd/*jpg DESKTOP/Root of Photo Folders/Folder2asdasdasd/*jpg DESKTOP/Root of Photo Folders/Folder3asdadfhgasdf/*jpg DESKTOP/Root of Photo Folders/Folder4qwetwdfsdfg/*jpg DESKTOP/Root of Photo... (4 Replies)
Discussion started by: guptaxpn
4 Replies

9. Shell Programming and Scripting

Move the file from one folder to another folder

Hi, I have a requirement to move a file from one folder(a) to another folder(b) only when folder (b) have a write permission. Folder permission is 755 If the permission is otherthan 755 we need to come out of the loop I will appreciate your help Thanks Soll (1 Reply)
Discussion started by: sollins
1 Replies

10. Shell Programming and Scripting

send a mail whenever a file is updated in certain folder or its subfolders

send a mail to a group of users whenever a file is updated in certain folder or its subfolders on an unix server (3 Replies)
Discussion started by: ashishabhishek
3 Replies
Login or Register to Ask a Question