I have many files with .txt extension. How to remove .txt extension for multiple files in linux?
I found that
rename .old .new *.old
command line
find -type f -name '*.js' | xargs rm