GitHub - pipe01/pear

1 min read Original article ↗

pear

Peek into archives

Supported formats:

  • ar
  • tar
  • tar in bzip2
  • tar in gzip
  • tar in xz
  • zip
  • 7z

Installation

Download the binary corresponding to your environment from the latest release.

Alternatively, install the Go toolchain, then run

go install github.com/pipe01/pear@latest

Usage

-n N
    stop after N files, or -1 for all (default 10)
-s N
    skip the first N files

Examples

$ pear archive.tar
file1
file2
dir/file3
dir/file4

$ pear -n 3 archive.tar
file1
file2
dir/file3

$ pear -s 1 -n 3 archive.tar
file2
dir/file3
dir/file4