From 35df3d6a579f53579d072013771d967742363419 Mon Sep 17 00:00:00 2001 From: Antono Vasiljev Date: Sun, 17 Jul 2011 07:17:56 +0300 Subject: [PATCH] Just extract() --- lib/extract.bash | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/extract.bash diff --git a/lib/extract.bash b/lib/extract.bash new file mode 100644 index 0000000..1c55928 --- /dev/null +++ b/lib/extract.bash @@ -0,0 +1,20 @@ +extract () { + if [ -f $1 ] ; then + case $1 in + *.tar.bz2) tar xvjf $1 ;; + *.tar.gz) tar xvzf $1 ;; + *.bz2) bunzip2 $1 ;; + *.rar) unrar x $1 ;; + *.gz) gunzip $1 ;; + *.tar) tar xvf $1 ;; + *.tbz2) tar xvjf $1 ;; + *.tgz) tar xvzf $1 ;; + *.zip) unzip $1 ;; + *.Z) uncompress $1 ;; + *.7z) 7z x $1 ;; + *) echo "'$1' cannot be extracted via >extract<" ;; + esac + else + echo "'$1' is not a valid file" + fi +} -- 2.17.1