Poti incerca sa folosesti comanda "find" pentru a muta
mai multe fisiere :-)


When you have a large number of files, you can't use
mv *:

$ mv * ..
bash: /bin/mv: Argument list too long

You have passed the upper limit. 

But you can use find:

$ find . -name "output.*.xml" -exec mv {} .. \;

Remember that \ or you'll get this error:

$ find . -name "output.*.xml" -exec mv {} .. ;
find: -exec: no terminating ";"

O zi buna.

Ionut

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
---
Pentru dezabonare, trimiteti mail la 
[EMAIL PROTECTED] cu subiectul 'unsubscribe rlug'.
REGULI, arhive si alte informatii: http://www.lug.ro/mlist/


Raspunde prin e-mail lui