# probe-tarball **Repository Path**: EEPPEE_admin/probe-tarball ## Basic Information - **Project Name**: probe-tarball - **Description**: probe tarball format, copy from tsoding's code - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-11 - **Last Updated**: 2026-05-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: tar ## README # List files in a tar archive tar -tvf archive.tar # List files in a gzip-compressed tar archive tar -ztvf archive.tar.gz # List files in a bzip2-compressed tar archive tar -jtvf archive.tar.bz2 # unpack using `tar xvfh` - the `unpack_tarfile_sample.c` does not work sometimes