Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Debian GNU/Linux Reference Guide
Prev Home Next

8.6.19 Peque�os scripts para recorrer distintos archivos

Las siguientes maneras de recorrer distintos archivos que coincidan con *.ext asegura un correcto manejo de nombres de archivos extra�os -como los que incluyen espacios- y realizan la misma tarea:

  • Bucle del shell (esta es una entrada de m�ltiples l�neas con PS2="> ") [ 36]:

         for x in *.ext; do
           if test -f "$x"; then
             comando "$x"
           fi
         done
    
  • Combinaci�n de find y xargs:

         find . -type f -maxdepth 1 -name '*.ext' -print0 | \
          xargs -0 -n 1 comando
    
  • find con la opci�n -exec y un comando:

         find . -type f -maxdepth 1 -name '*.ext' \
          -exec comando '{}' \;
    
  • find con la opci�n -exec y un script de shell breve:

         find . -type f -maxdepth 1 -name '*.ext' \
          -exec sh -c "comando '{}' && echo 'exitoso'" \;
    

Debian GNU/Linux Reference Guide
Prev Home Next

 
 
  Published under the terms of the GNU General Public License Design by Interspire