Remove file extensions

Posted by clint

Need to remove the extension from all the files in a directory?

for f in *.html; do mv "$f" "${f%.*}"; done