I've a tar (gz, bzip) file and want to see its content, but not recursively.
This is: The "first level" in the file.
I already know how to see content:
tar -ztf file.tar.gz
But it's recursive!!
Thanks!
I've a tar (gz, bzip) file and want to see its content, but not recursively.
This is: The "first level" in the file.
I already know how to see content:
tar -ztf file.tar.gz
But it's recursive!!
Thanks!
tar --exclude='*/*' -tf yourarchive.tar
should do it.
That's almost certainly a GNU tar-ism. But who doesn't use GNU tar, right? (Another fun fact: in recent versions of GNU tar, you don't need the 'z' or 'j' to list or uncompress .gz or .bz files -- it autodetects those and it just works.)
This should show top-level directories as well as just files that include the dot character:
$ tar -tf app.tar.gz | grep -E '^\w+(\.\w+)*/*\w+(\.\w+)*/?$'
django/
django/django.wsgi
django/search_indexes/
django/templates/
django/app/
django/other-app/