Aug 5, 2009 #1 jaymax2U Technical User Oct 1, 2008 47 US How can I do a single file extract from tar file tar xvf example.tar # extracts the whole tar file, which may be very large.
How can I do a single file extract from tar file tar xvf example.tar # extracts the whole tar file, which may be very large.
Aug 6, 2009 Thread starter #2 jaymax2U Technical User Oct 1, 2008 47 US Answering myself tar xvf tarfile.tar --include='desiredfile' did it! Upvote 0 Downvote