Decompress many: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 24: | Line 24: | ||
*.Z) uncompress $1;; | *.Z) uncompress $1;; | ||
*.zip) unzip $1;; | *.zip) unzip $1;; | ||
*) echo '"$1" | *) echo '"$1" extraction error.';; | ||
esac | esac | ||
else echo '"1" | else echo '"1" nonexistent?'; | ||
fi | fi | ||
} | } | ||
</pre> | </pre> |
Revision as of 11:30, 28 August 2022
# bash function to decompress (unarchive) many formats. function unarc() { if [ -f $1 ]; then case $1 in *.tar.*) tar xvf $1;; *.bz2) bunzip2 $1;; *.gz) gunzip $1;; *.jar) jar xvf $1;; *.lha) lha e $1;; *.tar) tar xvf $1;; *.tar.bz2) tar xvf $1;; *.tar.gz) tar xvf $1;; *.tar.xz) tar xvf $1;; *.tar.Z) tar xvf $1;; *.rar) rar x $1;; *.7z) 7z x $1;; *.tbz2) tar xvf $1;; *.tgz) tar xvf $1;; *.txz) tar xvf $1;; *.xz) unxz $1;; *.Z) uncompress $1;; *.zip) unzip $1;; *) echo '"$1" extraction error.';; esac else echo '"1" nonexistent?'; fi }