Hi Alfons,
If you have all files inside a directory tree, you can restore it with:
tar xvf device directory_name
if not, you can list all files from the tape in a text file, then recover only what you want:
tar tf device > list_tar.txt
once you have list_tar.txt you can do:
cat list_tar.txt | grep 040505| xargs tar xvf device
The xargs is mandatory because it is possible to have a very long list of files and obtain a wrong number of arguments error.
Frank.
Linux?. Yes, of course.