Help for this page

Select Code to Download


  1. or download this
    % cd YourDocRoot
    % find . -name '*.html' -exec rename .html .shtml '{}' \;
    
  2. or download this
    % find . -name '*.html' -print0 | xargs -0 rename .html .shtml