To change extension of multiple files (suppose all .txt files to .jpg), open terminal and execute the following command:
rename txt jpg *.txt
Explanation: here, it replaces the every occurrence of txt to jpg in all file matching "*.txt"
To change back to .txt, execute the following command:
rename jpg txt *.jpg
No comments:
Post a Comment