X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;ds=sidebyside;f=ex;h=e0ea044c4698753ea6ded729ea3d4ba9617ba1ca;hb=e1828c55ddc97196af903d0a39eaebdba46a6b44;hp=6391da984a0e13227aacdc5b40a189b8de004c96;hpb=92aaa33b267affac31512c9fd611f6c2d2b15e87;p=small-misc-bash diff --git a/ex b/ex index 6391da9..e0ea044 100755 --- a/ex +++ b/ex @@ -35,7 +35,7 @@ to try it out sometime." *.bz2 ) bunzip2 "$x" ;; *.gz ) gunzip "$x" ;; *.tar ) tar xf "$x" ;; - *.zip ) unzip "$x" ;; + *.zip|*.xpi ) unzip "$x" ;; *.Z ) uncompress "$x" ;; *.7z ) 7za x "$x" ;; *.deb ) ar x "$x" ;; @@ -57,8 +57,9 @@ to try it out sometime." ;; *.r[0-9][0-9]|*.rar ) unrar x "$x" ;; *.dsc) dpkg-source -x "$x" ;; - *.sfs) $user unsquashfs "$x" ;; - *) echo "I don't kno how to extract $x";; + *.sfs) $super unsquashfs "$x" ;; + *.jar) jar xf "$x" ;; + *) echo "I don't know how to extract $x";; esac done }