What is the good way to add file extension ".jpg" to extension-less files with bash?
Thanks,
|
Another way - without loops
Breakdown:
the above command is for dry run, after it you should remove the "echo" before mv |
|||||||||||||
|
|
You can use rename:
|
|||||||||
|
|
|||
|
|
|
|||
|
|
|
Ryan Li The correct syntax for adding a file extension to multiple files within a directory which do not have a file extension is
|
|||
|
|
mv "${file}" "${file}.jpg"? – onteria_ May 24 '11 at 16:57