Thread
:
Opening all *.htm files from current and nested directories using find and gedit
View Single Post
#
1
02-27-2010, 05:15 AM
Stream Recorder
Posts: n/a
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
Stream Recorder