Updated extract function in bash_profile

This commit is contained in:
Veit Heller
2014-06-18 14:10:21 +02:00
parent 17d203d345
commit 6056b5667a

View File

@@ -29,6 +29,7 @@ extract(){
case $1 in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.tar.xz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) rar x $1 ;;
*.gz) gunzip $1 ;;