Clean up case options

This commit is contained in:
rickyjon
2019-11-05 15:30:34 +11:00
parent acbedf3e9f
commit 305abea552

32
.bashrc
View File

@@ -1,11 +1,11 @@
# ____ _____ # ____ _____
# | _ \_ _| Derek Taylor (DistroTube) # | _ \_ _| Derek Taylor (DistroTube)
# | | | || | http://www.youtube.com/c/DistroTube # | | | || | http://www.youtube.com/c/DistroTube
# | |_| || | http://www.gitlab.com/dwt1/ # | |_| || | http://www.gitlab.com/dwt1/
# |____/ |_| # |____/ |_|
# #
# My bash config. Not much to see here. Some pretty standard stuff. # My bash config. Not much to see here. Some pretty standard stuff.
EDITOR="emacsclient -c" EDITOR="emacsclient -c"
export TERM="st-256color" export TERM="st-256color"
@@ -120,18 +120,16 @@ ex ()
{ {
if [ -f $1 ] ; then if [ -f $1 ] ; then
case $1 in case $1 in
*.tar.bz2) tar xjf $1 ;; *.tar.bz2|*.tbz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;; *.tar.gz|*.tgz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;; *.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;; *.rar) unrar x $1 ;;
*.gz) gunzip $1 ;; *.gz) gunzip $1 ;;
*.tar) tar xf $1 ;; *.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;; *.zip) unzip $1 ;;
*.tgz) tar xzf $1 ;; *.Z) uncompress $1;;
*.zip) unzip $1 ;; *.7z) 7z x $1 ;;
*.Z) uncompress $1;; *) echo "'$1' cannot be extracted via ex()" ;;
*.7z) 7z x $1 ;;
*) echo "'$1' cannot be extracted via ex()" ;;
esac esac
else else
echo "'$1' is not a valid file" echo "'$1' is not a valid file"