Skip to content

Instantly share code, notes, and snippets.

@jnbdz
Created March 29, 2019 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnbdz/cacf96a16a4c337aa93a2304764ee5bc to your computer and use it in GitHub Desktop.
Save jnbdz/cacf96a16a4c337aa93a2304764ee5bc to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
lszipcontent() {
local posPath=${1}
echo ${posPath}
for filename in ${posPath}/*.zip; do
[ -e "$filename" ] || continue
unzip -l ${filename}
echo "----"
done
}
lszipcontent ${1}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment