Added .tar.xz to ex alias

This commit is contained in:
Jiří Štefka 2020-06-07 21:08:06 +02:00
parent 40b4b2abd4
commit f0d3261336

@ -7,8 +7,9 @@ ex ()
case $1 in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.tar.xz) tar -xf ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;;