Extract specific files in a tar archive using a wildcard
- by AdrieanKhisbe
I'm tring for a script to extract only jpeg pictures from an archive containing maky kind of files.
To do so I tried first to use:
tar -xf MyTar.tar *.jpg
but it failed (*.jpg not found) and suggest me to use "--wildcard".
So I tried
tar -xf MyTar.tar --wildcard *.jpg
I did that, but then the same error and a different warning saying yo me that the option "--wildcard" is ambigious.
I've been over the manuel pages for tar, but didn't find a clue about the problem
thanks