Finding all .mp3 files and move to new directory from shell prompt

by Vivek Gite on January 7, 2007 · 27 comments

I have mp3 music file all over my file system. I'd like to move them onto specific directory called /mnt/mp3. So how do you find and move all mp3 files to /mnt/mp3 directory?

Simply use find command. It locates all files and then executes a command to move them to /mnt/mp3 (any other directory).

Step # 1: Finding all your .mp3 files

Following will just find all your .mp3 files using find command:

# find / -iname "*.mp3" -print

Where,
=> / - Search / root directory
=> -iname - File name search pattern (case insensitive)
=> -print - Display name of files

Step # 2: Finding and moving all your .mp3 files in one pass

Type the following command to find and move all files to /mnt/mp3 directory:
# find / -iname "*.mp3" -exec mv {} /mnt/mp3 \;
Where,

  • -exec mv {} /mnt/mp3 \;: Execute mv command. The string '{}' is replaced by the file name. \; ends /bin/mv command.

Tip: You just need to move .mp3 files and not directory, use:
# find / -iname "*.mp3" -type f -exec /bin/mv {} /mnt/mp3 \;

Find all directories having name mp3 and move:
# find / -iname "*.mp3" -type d -exec /bin/mv {} /mnt/mp3 \;

For performance you may need to consider using xargs command:
find / -iname "*.mp3" -type f | xargs -I '{}' mv {} /mnt/mp3

You can also write a script that moves files along with directories. This is also useful to move all files to mp3 player that has been mounted on /mnt/mp3 directory.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 27 comments… read them below or add one }

1 Jeff Schroeder January 8, 2007

find -exec {} forks a process for *every* found file and is not the best way of doing things. xargs is better in that it checks the maximum command length and intelligently breaks up commands. This makes it:
a.) Faster
b.) More efficient
c.) Yet another way to do the same thing

Here is the magic:
find / -iname -type f “*.mp3″ | xargs -I ‘{}’ mv {} /mnt/mp3

Reply

2 nixcraft January 10, 2007

Jeff

Thanks for pointing out xargs. I’ve updated the post.

Reply

3 Scott Carlson January 14, 2007

Some of you arguments are out of order.
The correct statements are

find / -iname “*.mp3″ -type d -exec /bin/mv {} /mnt/mp3 \;
find / -iname “*.mp3″ -type f -exec /bin/mv {} /mnt/mp3 \;
find / -iname “*.mp3″ -type f | xargs -I ‘{}’ mv {} /mnt/mp3

Reply

4 nixcraft January 14, 2007

Scott,

…article has been updated

Appreciate your post.

Reply

5 Dhyanesh Vyas June 23, 2007

Jai Swaminarayan

You have done a great job
Keep it up
Just Excellent

Reply

6 kevin September 2, 2007

and how can i actually move the files along with their directory? incl Xargs argument..? that would be just perfect!
thnx a lot in advance?

Reply

7 Troy Palacino December 8, 2007

thank you guys so much for this article and the additional posts. i just had to do a file recovery from a hard drive that i accidentally erased when migrating from windows to linux and it restored all my music into approximately 12,000 different directories and i was going through each folder pulling them out cuz there isn’t a app that allowed me to find and move. this was EXACTLY what i needed. Thanx again for the helpful post.

Reply

8 luis January 15, 2008

Really usefull!
thx from spain!

Reply

9 notworking September 27, 2008

xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option

Reply

10 nbb January 7, 2009

xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option

Reply

11 Anup July 17, 2009

find / -iname “*.mp3″ -type f -print0 | xargs -0 -I ‘{}’ mv {} /mnt/mp3

This should get rid of “xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option”

Reply

12 Ignacio Soto Reveco August 16, 2009

hey thanks, from CHILE,

i’ve lost all my information because y made a mistake on installing linux and unfortunate i formatted the disk, and all my data lost, then y install testdisk and y recover 90 percent of all my data, but it comes with serial name, like f123113.txt, f124434.pdf also in directories of 500 files, i had 75 directories, (75*500=a lot of work searching for pdf).

so i reorganized my files by type in different folders

thxs a lot

sorry for poor English…

Reply

13 Isaiah Roberts December 4, 2009

Hey, thanks a lot for this! I’ve been studying bash scripting so I could do exactly this! Thanks a lot! btw.. It wasn’t clear to me, does this copy *just* the files, or does it also copy the directories? Thanks a lot again!

Isaiah

Reply

14 Scott Carlson December 4, 2009

@Isaiah

It copies files from all the subdirectories into one target directory.

Reply

15 Isaiah Roberts December 4, 2009

Ah, that’s what I figured. Well, thank you very much! It’s really nice, I’m going to try to find a way to write a script that searches out all mp3s within a directory and it’s subdirectories(say, my “Music” directory), and then copy only the mp3s out, but keep the structure… I’m sure this is not only possible, but fairly easy… sad to say, I’m just learning shell scripting, so I have very little idea how to do it. I’m currently just figuring out the steps I’d need to take to get this working, then I’m going to use my trusty friend “google” to help me translate that into shell scripting. Many thanks! If anyone has any ideas on how to get this working, I’d be eternally grateful! :)

Isaiah(dreadpirate15)

Reply

16 Scott Carlson December 4, 2009

@Isaiah

I’m sure there is a simpler way, but I can think of doing it in two passes

find / -iname “*.mp3″ -type f -print0 | xargs -0 -I ‘{}’ mkdir -p /mnt/mp3/`basename {}`
find / -iname “*.mp3″ -type f -print0 | xargs -0 -I ‘{}’ mv {} /mnt/mp3/{}

Reply

17 Thanks Scott February 9, 2010

This is very helpful! Thanks for all your help! Quick question: Is there a way to delete the directory where the MP3 came from?

Reply

18 Scott Carlson February 10, 2010

If you just want to clean up empty directories after you’re done, this is a quick command I keep in a script called pruneEmptyDirs:

perl -MFile::Find -e”finddepth(sub{rmdir},’.')”

Reply

19 casperz February 10, 2010

I am new to linux, taking classes, reading, etc…
Can someone explain to me what the “iname” in this command is? I’m not familiar with that
”’find / -iname “*.mp3″ -type f -print0 | xargs -0 -I ‘{}’ mv {} /mnt/mp3/{}”’

Reply

20 casperz February 10, 2010

I want to run mplayer in Fedora, scan my drive for mp3 and relocate to an mp3 directory

Reply

21 Scott Carlson February 11, 2010

The “man” command will be your friend. So “man find” will explain the command and its options.

In this case -iname means do a case-insentive match on the filename, and the “-type f” means only match files not directories or symbolic links.

Reply

22 fatjoe August 4, 2010

“You can also write a script that moves files along with directories. This is also useful to move all files to mp3 player that has been mounted on /mnt/mp3 directory.”

Can someone help me with this?

Reply

23 ddarek4 August 1, 2011

Hi

After some hours i get functional script….
i don’t know why but this above command don’t work on my debian so i had to spent some time for it…
Here is working code (in this case i find .jpg but it doesn’t matter)

find /mnt/hda1/zdjecia/test1/ -type f -iname ‘*.jpg’ -printf ‘%’h'\’”0″ | xargs -0 -I ‘{}’ mkdir -p /mnt/hda1/test/{} \;
find /mnt/hda1/zdjecia/test1/ -iname “*.jpg” -type f -exec cp {} -rv /mnt/hda1/test{} ‘;’

the first makes folders and the second copying files…
I don’t know why to copy command xargs don’t works… so i used exec
sory for my bad english…

Reply

24 Rajasekar August 6, 2011

how to find mp3, jpg using linux command with file size

Reply

25 Rajasekar August 6, 2011

how to find mp3 and jpg using linux command with file size.

Reply

26 Andy Newton September 19, 2011

You could copy files and folder structure but only copy the actual files of *.mp3 type with rsync too, and this would work locally or via SSH:

locally:

rsync -av –progress –include “*/” –include “*.mp3″ –exclude “*” /some/path/ /mnt/targetpath/

remotely:

rsync -av –progress –include “*/” –include “*.mp3″ –exclude “*” rsync -av –progress –include “*/” –include “*.mp3″ –exclude “*” /some/path/ /mnt/targetpath/ username@remotehost.com:/target/path/

Reply

27 Andy Newton September 19, 2011

Sorry copy and paste fail:

Remotely:

rsync -av –progress –include “*/” –include “*.mp3″ –exclude “*” /some/path/ username@remotehost.com:/target/path/

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 14 + 8 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: