View Single Post
  #1  
Old 02-27-2010, 05:15 AM
Stream Recorder
 
Posts: n/a
Default

Opening all *.htm files from current and nested directories using find and gedit


If you want to edit files one by one:
Code:
 find -name '*.htm' -exec gedit {} \;
If you want to open all files for editing:
Code:
find . -name "*.htm" |xargs gedit
Reply With Quote