The Following User Says Thank You to finlaybob For This Useful Post: | ||
![]() |
2011-02-04
, 14:38
|
Posts: 662 |
Thanked: 653 times |
Joined on Feb 2010
|
#3
|
The Following 2 Users Say Thank You to Reffyyyy For This Useful Post: | ||
![]() |
2011-02-04
, 15:05
|
Posts: 57 |
Thanked: 9 times |
Joined on Nov 2009
@ Glasgow, Scotland
|
#4
|
rm -rf *.m4p
sza=$(ls | grep m4p); rm $sza
Usage rm [OPTION] ... [FILE] ...
![]() |
2011-02-04
, 15:20
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#5
|
rm `find . -name "*.mp4"` find . -name "*.mp4" | xargs rm find . -name "*.mp4" -delete
![]() |
2011-02-04
, 15:33
|
|
Posts: 1,986 |
Thanked: 7,698 times |
Joined on Dec 2010
@ Dayton, Ohio
|
#6
|
rm `find | grep m4p`
find . -name "*.m4p"
find .sounds/Music -name "*.m4p"
rm `find .sounds/Music -name "*.m4p"`
The Following User Says Thank You to Copernicus For This Useful Post: | ||
![]() |
2011-02-04
, 15:38
|
Posts: 662 |
Thanked: 653 times |
Joined on Feb 2010
|
#7
|
The Following User Says Thank You to Reffyyyy For This Useful Post: | ||
![]() |
2011-02-04
, 15:54
|
Posts: 662 |
Thanked: 653 times |
Joined on Feb 2010
|
#8
|
The Following User Says Thank You to Reffyyyy For This Useful Post: | ||
![]() |
2011-02-04
, 16:35
|
Posts: 57 |
Thanked: 9 times |
Joined on Nov 2009
@ Glasgow, Scotland
|
#10
|
./Neneh Cherry, Speech & Speech & Neneh Cherry/1 Giant Leap/Braided Hair.m4p
Nokia-N900:/home/user/MyDocs/.sounds/Music# sz=$(find | grep Braided); rm $sz
rm: cannot remove './Neneh': No such file or directory rm: cannot remove 'Cherry,': No such file or directory rm: cannot remove 'Speech': No such file or directory rm: cannot remove '&': No such file or directory rm: cannot remove 'Speech': No such file or directory rm: cannot remove '&': No such file or directory rm: cannot remove 'Neneh': No such file or directory rm: cannot remove 'Cherry/1': No such file or directory rm: cannot remove 'Giant': No such file or directory rm: cannot remove 'Leap/Braided': No such file or directory rm: cannot remove 'Hair.m4p': No such file or directory Nokia-N900:/home/user/MyDocs/.sounds/Music#
I need to know how to remove all of a certain file type from a folder and its sub folders.
I've only been using linux (maemo 5 and ubuntu 9.04/10.04) for a year or so, i thought using (as root):
Ive managed to find all files with said extension by using(as root):
I've tried(also as root):
Its just my lack of knowledge on how the pipe system works
EDIT:
The directory is /home/user/MyDocs/.sounds/Music
there are sub directories per artist then album e.g.
/home/user/MyDocs/.sounds/Music/Andrew WK/Close Calls With Brick Walls/Track1.m4p
Any help appreciated.
Cheers.
Last edited by finlaybob; 2011-02-04 at 15:08.