mirror of
https://salsa.debian.org/images-team/debian-cd.git
synced 2024-11-24 15:19:51 -01:00
15 lines
156 B
Bash
Executable File
15 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for file in $@; do
|
|
if [ -f $file ]; then
|
|
case $file in
|
|
*.gz)
|
|
zcat -f $file;;
|
|
*.xz)
|
|
xzcat -f $file;;
|
|
esac
|
|
fi
|
|
done
|