Opening all *.htm files from current and nested directories using find and geditIf you want to edit files one by one:
Code:
find -name '*.htm' -exec gedit {} \; Code:
find . -name "*.htm" |xargs gedit |
All times are GMT -6. The time now is 12:01 PM. |