prezto_config/modules/archive/functions/ls-archive

55 lines
1.1 KiB
Plaintext
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Lists the contents of popular archive formats.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 05:13:58 +02:00
local verbose
if (( $# == 0 )); then
2012-01-19 08:28:01 +01:00
cat >&2 <<EOF
usage: $0 [-option] [file ...]
options:
-v, --verbose verbose archive listing
Report bugs to <sorin.ionescu@gmail.com>.
EOF
2011-10-12 05:13:58 +02:00
fi
if [[ "$1" == "-v" || "$1" == "--verbose" ]]; then
2011-10-12 05:13:58 +02:00
verbose=0
shift
fi
while (( $# > 0 )); do
if [[ ! -f "$1" ]]; then
2012-01-19 08:28:01 +01:00
print "$0: file not valid: $1" >&2
2011-10-12 05:13:58 +02:00
shift
continue
fi
case "$1" in
(*.tar.gz|*.tgz) tar t${verbose:+v}vzf "$1" ;;
(*.tar.bz2|*.tbz|*.tbz2) tar t${verbose:+v}jf "$1" ;;
(*.tar.xz|*.txz) tar --xz --help &> /dev/null \
&& tar --xz -t${verbose:+v}f "$1" \
|| xzcat "$1" | tar t${verbose:+v}f - ;;
(*.tar.zma|*.tlz) tar --lzma --help &> /dev/null \
&& tar --lzma -t${verbose:+v}f "$1" \
|| lzcat "$1" | tar x${verbose:+v}f - ;;
(*.tar) tar t${verbose:+v}f "$1" ;;
(*.zip) unzip -l${verbose:+v} "$1" ;;
(*.rar) unrar ${${verbose:+v}:-l} "$1" ;;
(*.7z) 7za l "$1" ;;
(*)
2012-01-19 08:28:01 +01:00
print "$0: cannot list: $1" >&2
2011-10-12 05:13:58 +02:00
success=1
;;
esac
shift
done