Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Linux and software for Linux (http://stream-recorder.com/forum/forumdisplay.php?f=61)
-   -  

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

(http://stream-recorder.com/forum/showthread.php?t=5945)

Stream Recorder 02-27-2010 05:15 AM

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


All times are GMT -6. The time now is 12:01 PM.