Shell script to arrange files into several folders


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Shell script to arrange files into several folders
# 8  
Old 03-02-2010
MySQL

Quote:
Originally Posted by fubaya
After you create the directories (please backup the images first)...
Code:
for i in $(ls -d */)
do
list=$(ls *.jpg | head -200)
mv "$list" "$i"
done

for every directory in a list of directories, get a list of 200 jpgs, move them to that directory
I think when you have more directories, this might give error.
Try the below one.

Considering you have 675 files...
We will put 200 files into each of the dirs. so we need 4 dirs.

Code:
for (( i=1; i<=4; i++))
do
  mkdir $i
  for x in `ls -lt *.JPG | head -200 | tr -s " " "|" | cut -d"|" -f9`
  do
  mv $x $i/
  done
done

-----------

"head -200" is to take 200 files.
" tr -s " " "|" | cut -d"|" -f9 " ---> This is to take just the filename from the ls -lt command's output.


------------

Let me know if you have any issues with this script.Smilie

Note:- I didnot check it right now. Hope it works.... Smilie
# 9  
Old 03-04-2010
Ok right now Im too busy with work so ill try to run all variations of these codes on the weekend and Ill inform you which one worked =)


THanks for all your replies
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script for enter folders and join file

Hello everyone. I have a dlink cam that save recordings splitted for hours. Each hour folder contain a lot of small avi files. Repository has the following directories structure: \_20140101/ \_ 01 \_a.avi \_b.avi \_ 02 \_c.avi ... (3 Replies)
Discussion started by: setterx
3 Replies

2. Shell Programming and Scripting

how to arrange datas in columns in shell script.

Hello All, I have datas in the below format. Mark 45 Steve 60 Johnson 79 Elizabeth 90 My requirement is to arrange the data in the order as shown in the attachment. My OS is Solaris. ... (6 Replies)
Discussion started by: vashece
6 Replies

3. Shell Programming and Scripting

Shell Script to delete files within a particular time frame under multiple sub folders

Greetings! I'm looking for starting information for a shell script. Here's my scenario: I have multiple folders(100) for example: /www/test/applications/app1/logs /www/test/applications/app2/logs Within these folders there are log files files that need to be deleted after a month. ... (3 Replies)
Discussion started by: whysolucky
3 Replies

4. Shell Programming and Scripting

automating a shell script to run across all the folders

I would like to know how to automate an already made shell script (all the steps of all the commands done on a specific folder) by utilizing a list (a .txt) of all folder names that the shell scripts goes and executes For example: In the working folder called main/ there are subfolders named... (3 Replies)
Discussion started by: Lucky Ali
3 Replies

5. Shell Programming and Scripting

Urgent- shell script to create sub folders

Hi All, Could any one help me with a shell script which will create different sub folders in a folder and of which the sub folders names should be taken from a text file. Thanks (1 Reply)
Discussion started by: chetansingh23
1 Replies

6. Shell Programming and Scripting

How to arrange xml tags in single row using shell script?

I want to put one xml record in one row and so on... sample two records are here. <?xml version="1.0"?> <Object> <Header> <XCOMVers>V1.0</XCOMVers> <REPORT>XXXXX</REPORT> <CODE>002</CODE> </Header> <IssueCard> <Record> <L>CAR SYSTEM -SSSSS -</L> ... (3 Replies)
Discussion started by: sene_geet
3 Replies

7. Shell Programming and Scripting

How to arrange xml tags in single row using shell script?

I want to put one xml record in one row and so on... sample two records are here. <?xml version="1.0"?> <Object> <Header> <XCOMVers>V1.0</XCOMVers> <REPORT>XXXXX</REPORT> <CODE>002</CODE> </Header> <IssueCard> <Record> <L>CAR SYSTEM -SSSSS -</L> ... (1 Reply)
Discussion started by: sene_geet
1 Replies

8. Shell Programming and Scripting

fixperms on folders in shell script

Hi, I am using fixperms command to change permissions of diretories in my script, i have to change 3 directories permissions one by one using fixperms. i tried the below code code: exec DIR1/fixperms -rRy DIR1 exec DIR2/fixperms -rRy DIR2 exec DIR3/fixperms -rRy DIR3 but this is... (4 Replies)
Discussion started by: sreelu
4 Replies

9. Shell Programming and Scripting

Shell script to move files to 3 different folders

Hi guys: I've got this problem, I want to move a bunch of files to 3 different folders, without any specific order, and I'm trying to automatize it with a shell script. I'm a newbie at shell scripting so this is my first try: #!/bin/bash COUNTER=`ls -1 | wc -l` while do ARRAY=(... (11 Replies)
Discussion started by: wretchedmike
11 Replies

10. Shell Programming and Scripting

runnning a shell script in multiple folders

Hey everyone, I'm fairly new to both unix and shell scripts. Right now I have a script that I can run in one folder (if a certain text file is there, do one thing, if it's not, do something else). I want to modify this to run in multiple directories. My setup is: a company directory, and within it... (2 Replies)
Discussion started by: melearlin
2 Replies
Login or Register to Ask a Question