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 Bouts de scripts pour boucler sur chaque fichier

Les fa�ons suivantes de boucler sur chaque fichier correspondant � *.ext assure une gestion correcte des noms de fichiers atypiques comme ceux ayant des espaces et effectuent la m�me chose :

  • Boucle shell (ceci est une entr�e multi-ligne avec PS2="> ") [ 30] :

         for x in *.ext; do
           if test -f "$x"; then
             command "$x"
           fi
         done
    
  • find et xargs :

         find . -type f -maxdepth 1 -name '*.ext' -print0 | \
          xargs -0 -n 1 command
    
  • find avec l'option -exec et une commande :

         find . -type f -maxdepth 1 -name '*.ext' \
          -exec command '{}' \;
    
  • find avec l'option -exec et un script shell :

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

Debian GNU/Linux Reference Guide
Prev Home Next

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