How can I rename multiple files using wildcards? 2011., január 31., | | [] #knowledge #Linux for i in `ls -1 *.JPE`; do mv $i ${i/JPE/JPG}; done