Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[bash]script per spostare dei files in un cartella.
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
Tùrin_Mormegil
Guru
Guru


Joined: 21 Sep 2004
Posts: 478
Location: Gorizia - Milano

PostPosted: Sun Dec 19, 2004 10:20 am    Post subject: [bash]script per spostare dei files in un cartella. Reply with quote

ho un sacco di ogg rippati (da cd originali, tiè siae) e vorrei mettere in ordine i files in cartelle facendolo con uno script...

quello che avevo pensato io era molto semplice
Code:
ls /home/edo/oggs | grep Jam | mv /home/edo/oggs/pearljam
(per esempio questo con i Pearl Jam) ma non funziona perchè mv non ha files da spostare e non so come dichiarare la variabile :/ suggestions?
_________________
Как я рад!
Back to top
View user's profile Send private message
comio
Advocate
Advocate


Joined: 03 Jul 2003
Posts: 2191
Location: Taranto

PostPosted: Sun Dec 19, 2004 10:25 am    Post subject: Re: [bash]script per spostare dei files in un cartella. Reply with quote

Tùrin_Mormegil wrote:
ho un sacco di ogg rippati (da cd originali, tiè siae) e vorrei mettere in ordine i files in cartelle facendolo con uno script...

quello che avevo pensato io era molto semplice
Code:
ls /home/edo/oggs | grep Jam | mv /home/edo/oggs/pearljam
(per esempio questo con i Pearl Jam) ma non funziona perchè mv non ha files da spostare e non so come dichiarare la variabile :/ suggestions?

scusa... fare
Code:

mv /home/edo/oggs/*Jam* /home/edo/oggs/pearljam

[/code]

non basta?

Altre soluzione: usare il for:

Code:

for i in `ls /home/edo/oggs | grep Jam`; do mv $i /home/edo/oggs/pearljam; done;


Altra soluzione: usare find:

Code:

find /home/edo/oggs -name '*Jam*' -exec mv \{\} /home/edo/oggs/pearljam \;


Altra soluzione: usare mv:

Code:

mv `ls /home/edo/oggs | grep Jam` /home/edo/oggs/pearljam


Attento solo alle dir ;)

ciao
_________________
RTFM!!!!

e

http://www.comio.it
:)
Back to top
View user's profile Send private message
Tùrin_Mormegil
Guru
Guru


Joined: 21 Sep 2004
Posts: 478
Location: Gorizia - Milano

PostPosted: Sun Dec 19, 2004 10:29 am    Post subject: Reply with quote

direi che il secondo è quello che più si avvicina a quello che volevo fare ;) grazie :D
_________________
Как я рад!
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum