Results 1 to 3 of 3
Hi,
I want apply a script to all files in a tree of directories.
How must I do?
Tks...
- 11-04-2007 #1Just Joined!
- Join Date
- Jul 2007
- Location
- Italy
- Posts
- 11
I want apply a script to all files of a directories' tree.
Hi,
I want apply a script to all files in a tree of directories.
How must I do?
Tks
- 11-04-2007 #2Linux Enthusiast
- Join Date
- Aug 2006
- Posts
- 631
With the find command you can search recursively through the underlying directories:
Check the options in the manpage of find or Google for examples.Code:find <dir> -name <files> -exec <command> {} \;
Regards
- 11-05-2007 #3Just Joined!
- Join Date
- Jul 2007
- Location
- Italy
- Posts
- 11
Ok, I will try. Thank you


Reply With Quote