unzip archive.zip "stage components"
Then tries matching the second pattern components , fails, prints: unzip archive
unzip my.zip stage components
In most Unix-like environments (Linux, macOS, Bash, Zsh), the shell performs a process called "globbing." When you type unzip archive.zip *.txt , the shell looks in your for any files ending in .txt . unzip archive
unzip archive.zip "stage components"
Then tries matching the second pattern components , fails, prints:
unzip my.zip stage components
In most Unix-like environments (Linux, macOS, Bash, Zsh), the shell performs a process called "globbing." When you type unzip archive.zip *.txt , the shell looks in your for any files ending in .txt .