I want to extract multiple information using grep. example:
when using exiftool, I got all this information, and more:
$exiftool Titanic.Avi
ExifTool Version Number : 8.60
File Name : Titanic.Avi
Directory : .
File Size : 702 MB
File Modification Date/Time : 2013:07:28 22:36:46+02:00
File Permissions : rw-rw-r--
File Type : AVI
- I want to view only the File Name and the File Type.
like this:
File Name : Titanic.Avi
File Type : AVI
I have a Directory Movie, and containing a hole directories, in each directory there is a movie, i want to extract those information from it
example:
Movies\Titanic\Titanic.avi
Movies\The Call\The Call.avi
.
.
Movies\Pawn\Pawn.mkv
- I need a loop with exiftool and | grep to get info like this:
Titanic.avi
File Name : Titanic.Avi
File Type : AVI
The Call.avi
File Name : The Call.Avi
File Type : AVI
Pawn.mkv
File Name : Pawn.Avi
File Type : MKV