How can i cycle through all subdirectories and do a command

Vom einfachen Programm zum fertigen Debian-Paket, Fragen rund um Programmiersprachen, Scripting und Lizenzierung.
Antworten
Don83
Beiträge: 57
Registriert: 03.05.2009 18:02:27

How can i cycle through all subdirectories and do a command

Beitrag von Don83 » 16.07.2014 13:31:15

Hello,

i would like to write a bash program wich enabbles me to define a directory and then automatically do one command within each of the subdirectories.

I am not that good in bash programming - so any help would be appreciated.

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: How can i cycle through all subdirectories and do a comm

Beitrag von rendegast » 16.07.2014 16:03:34

'man find'

Code: Alles auswählen

find dir1/ dir2/ ... -type d -execdir command ... \;
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

Antworten