In this video demonstration i'm gonna show you that how to extract multiple files or group of files like all text files from a tar file?
To extract multiple files from a tar file at a time:-
#tar -xvf archive_name file1 file2
To extract all text files from a tar file :-
#tar -xvf archive_name --wildcards '*.txt'