Preview an archive contents without extracting itCan I create a self-extracting archive for Mac?Run AppleScript from bash scriptDownload files and keep archiveList contents and extract individual files from password protected archive fileNot able to see the archive optionHow to see Archive BoxHow can I reset the 'get info' preview image of archive utility?Extracting the contents of the Xcode XIP file on OS X Yosemite 10.10.5Bug with Archive utility and Column viewTrouble extracting zip file in macOS
Why don't commercial aircraft adopt a slightly more seaplane-like design to allow safer ditching in case of emergency?
If I stood next to a piece of metal heated to a million degrees, but in a perfect vacuum, would I feel hot?
Why doesn't philosophy have higher standards for its arguments?
Where do the electrons come from to make the carbon stable during bombardment of alpha particles on beryllium
What does it actually mean to have two time dimensions?
Is the purpose of sheet music to be played along to? Or a guide for learning and reference during playing?
How to make a plagal cadence sound convincing as an ending?
Paradox in the definition of the electric field
Which GPUs to get for Mathematical Optimization (if any...)?
Is this statue in Curse of Strahd an easter egg?
Cover a cube with four-legged walky-squares!
Is it ethical for a company to ask its employees to move furniture on a weekend?
Is it okay for a chapter's POV to shift as it progresses?
Does the Intel 8085 CPU use real memory addresses?
Sending a photo of my bank account card to the future employer
Is it rude to refer to janitors as 'floor people'?
Pi 3 B+ no audio device found
I want to know the name of this below component
Create Array from list of indices/values
How Can I Process Untrusted Data Sources Securely?
At which point can a system be compromised when downloading archived data from an untrusted source?
Credit card details stolen every 1-2 years. What am I doing wrong?
Was Apollo 13 radio blackout on reentry longer than expected?
Did 007 exist before James Bond?
Preview an archive contents without extracting it
Can I create a self-extracting archive for Mac?Run AppleScript from bash scriptDownload files and keep archiveList contents and extract individual files from password protected archive fileNot able to see the archive optionHow to see Archive BoxHow can I reset the 'get info' preview image of archive utility?Extracting the contents of the Xcode XIP file on OS X Yosemite 10.10.5Bug with Archive utility and Column viewTrouble extracting zip file in macOS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
less command on Ubuntu allows to peek inside different kinds of archives from terminal. For example, all of these commands would show me the list of files in each of the four archives:
less archive.zip
less archive.tar.gz
less archive.tar.bz2
less archive.7z
On MacOS, I can use vim for this. However, this is less convenient, because Vim requires three buttons to be pressed to exit it (:q) instead of one (q).
Is there an equivalently fast way to see list of files in archives for MacOS?
terminal archive
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
less command on Ubuntu allows to peek inside different kinds of archives from terminal. For example, all of these commands would show me the list of files in each of the four archives:
less archive.zip
less archive.tar.gz
less archive.tar.bz2
less archive.7z
On MacOS, I can use vim for this. However, this is less convenient, because Vim requires three buttons to be pressed to exit it (:q) instead of one (q).
Is there an equivalently fast way to see list of files in archives for MacOS?
terminal archive
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
less command on Ubuntu allows to peek inside different kinds of archives from terminal. For example, all of these commands would show me the list of files in each of the four archives:
less archive.zip
less archive.tar.gz
less archive.tar.bz2
less archive.7z
On MacOS, I can use vim for this. However, this is less convenient, because Vim requires three buttons to be pressed to exit it (:q) instead of one (q).
Is there an equivalently fast way to see list of files in archives for MacOS?
terminal archive
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
less command on Ubuntu allows to peek inside different kinds of archives from terminal. For example, all of these commands would show me the list of files in each of the four archives:
less archive.zip
less archive.tar.gz
less archive.tar.bz2
less archive.7z
On MacOS, I can use vim for this. However, this is less convenient, because Vim requires three buttons to be pressed to exit it (:q) instead of one (q).
Is there an equivalently fast way to see list of files in archives for MacOS?
terminal archive
terminal archive
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 8 hours ago
Andriy MakukhaAndriy Makukha
1184 bronze badges
1184 bronze badges
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Andriy Makukha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Manually
zip:unzip -v FILE.zip
tar.gz:tar tvzf FILE.tar.gz
tar.bz2:bunzip2 -c FILE.tar.bz2 | tar tvf -
.7z:7z l FILE.7z
PS: For .7z you need to run brew install p7zip first
Extend less to work the same way it does under Linux
Install
lesspipebrew install lesspipeAdd the following lines to
.bashrc(or the profile of whatever shell you use)if [[ -x /usr/local/bin/lesspipe.sh ]]; then
export LESSOPEN="|/usr/local/bin/lesspipe.sh %s"
export LESS_ADVANCED_PREPROCESSOR=1
fiSource
.bashrcor open a new terminal tab
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configureless.
– nohillside♦
7 hours ago
add a comment |
MacOS Finder allows viewing the names of the files in a ZIP archive without extracting. But, since it takes more than three clicks to do it, perhaps this is not what you want.
How to do it. Mojave 10.14.5
In the Finder, select the ZIP file.
Hit the space bar. You see a window about the ZIP file.
In that window, click on the little triangle ▶︎ to see the list of files contained in the archive.
If there are folders within folders, use the new triangle to see them.
I haven't tried this with other types of archives. Of course, if the ZIP is encrypted, you may see less about it.
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Manually
zip:unzip -v FILE.zip
tar.gz:tar tvzf FILE.tar.gz
tar.bz2:bunzip2 -c FILE.tar.bz2 | tar tvf -
.7z:7z l FILE.7z
PS: For .7z you need to run brew install p7zip first
Extend less to work the same way it does under Linux
Install
lesspipebrew install lesspipeAdd the following lines to
.bashrc(or the profile of whatever shell you use)if [[ -x /usr/local/bin/lesspipe.sh ]]; then
export LESSOPEN="|/usr/local/bin/lesspipe.sh %s"
export LESS_ADVANCED_PREPROCESSOR=1
fiSource
.bashrcor open a new terminal tab
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configureless.
– nohillside♦
7 hours ago
add a comment |
Manually
zip:unzip -v FILE.zip
tar.gz:tar tvzf FILE.tar.gz
tar.bz2:bunzip2 -c FILE.tar.bz2 | tar tvf -
.7z:7z l FILE.7z
PS: For .7z you need to run brew install p7zip first
Extend less to work the same way it does under Linux
Install
lesspipebrew install lesspipeAdd the following lines to
.bashrc(or the profile of whatever shell you use)if [[ -x /usr/local/bin/lesspipe.sh ]]; then
export LESSOPEN="|/usr/local/bin/lesspipe.sh %s"
export LESS_ADVANCED_PREPROCESSOR=1
fiSource
.bashrcor open a new terminal tab
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configureless.
– nohillside♦
7 hours ago
add a comment |
Manually
zip:unzip -v FILE.zip
tar.gz:tar tvzf FILE.tar.gz
tar.bz2:bunzip2 -c FILE.tar.bz2 | tar tvf -
.7z:7z l FILE.7z
PS: For .7z you need to run brew install p7zip first
Extend less to work the same way it does under Linux
Install
lesspipebrew install lesspipeAdd the following lines to
.bashrc(or the profile of whatever shell you use)if [[ -x /usr/local/bin/lesspipe.sh ]]; then
export LESSOPEN="|/usr/local/bin/lesspipe.sh %s"
export LESS_ADVANCED_PREPROCESSOR=1
fiSource
.bashrcor open a new terminal tab
Manually
zip:unzip -v FILE.zip
tar.gz:tar tvzf FILE.tar.gz
tar.bz2:bunzip2 -c FILE.tar.bz2 | tar tvf -
.7z:7z l FILE.7z
PS: For .7z you need to run brew install p7zip first
Extend less to work the same way it does under Linux
Install
lesspipebrew install lesspipeAdd the following lines to
.bashrc(or the profile of whatever shell you use)if [[ -x /usr/local/bin/lesspipe.sh ]]; then
export LESSOPEN="|/usr/local/bin/lesspipe.sh %s"
export LESS_ADVANCED_PREPROCESSOR=1
fiSource
.bashrcor open a new terminal tab
edited 7 hours ago
answered 8 hours ago
nohillside♦nohillside
55.1k14 gold badges116 silver badges165 bronze badges
55.1k14 gold badges116 silver badges165 bronze badges
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configureless.
– nohillside♦
7 hours ago
add a comment |
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configureless.
– nohillside♦
7 hours ago
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
Thanks. Not exactly user friendly, but I will look into it.
– Andriy Makukha
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configure
less.– nohillside♦
7 hours ago
@AndriyMakukha You can easily turn this in to shell aliases, or configure
less.– nohillside♦
7 hours ago
add a comment |
MacOS Finder allows viewing the names of the files in a ZIP archive without extracting. But, since it takes more than three clicks to do it, perhaps this is not what you want.
How to do it. Mojave 10.14.5
In the Finder, select the ZIP file.
Hit the space bar. You see a window about the ZIP file.
In that window, click on the little triangle ▶︎ to see the list of files contained in the archive.
If there are folders within folders, use the new triangle to see them.
I haven't tried this with other types of archives. Of course, if the ZIP is encrypted, you may see less about it.
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
add a comment |
MacOS Finder allows viewing the names of the files in a ZIP archive without extracting. But, since it takes more than three clicks to do it, perhaps this is not what you want.
How to do it. Mojave 10.14.5
In the Finder, select the ZIP file.
Hit the space bar. You see a window about the ZIP file.
In that window, click on the little triangle ▶︎ to see the list of files contained in the archive.
If there are folders within folders, use the new triangle to see them.
I haven't tried this with other types of archives. Of course, if the ZIP is encrypted, you may see less about it.
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
add a comment |
MacOS Finder allows viewing the names of the files in a ZIP archive without extracting. But, since it takes more than three clicks to do it, perhaps this is not what you want.
How to do it. Mojave 10.14.5
In the Finder, select the ZIP file.
Hit the space bar. You see a window about the ZIP file.
In that window, click on the little triangle ▶︎ to see the list of files contained in the archive.
If there are folders within folders, use the new triangle to see them.
I haven't tried this with other types of archives. Of course, if the ZIP is encrypted, you may see less about it.
MacOS Finder allows viewing the names of the files in a ZIP archive without extracting. But, since it takes more than three clicks to do it, perhaps this is not what you want.
How to do it. Mojave 10.14.5
In the Finder, select the ZIP file.
Hit the space bar. You see a window about the ZIP file.
In that window, click on the little triangle ▶︎ to see the list of files contained in the archive.
If there are folders within folders, use the new triangle to see them.
I haven't tried this with other types of archives. Of course, if the ZIP is encrypted, you may see less about it.
edited 7 hours ago
answered 8 hours ago
GEdgarGEdgar
2,2681 gold badge10 silver badges16 bronze badges
2,2681 gold badge10 silver badges16 bronze badges
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
add a comment |
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
This shows a little window with two buttons, but no triangle there... MacOS 10.14.5 Mojave.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
It my interface this window looks different. The button on the right is called "Uncompress". And on the left I see a giant icon of an archive. But no way to press it and see the tree.
– Andriy Makukha
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Interesting. So maybe this interface is supplied by "The Unarchiver", which is free in the Mac App Store. Maybe you have to set The Unarchiver as the default way to open ZIP files?
– GEdgar
7 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
Maybe. My default is "Archive Utility".
– Andriy Makukha
6 hours ago
add a comment |