diff --git a/utils/.local/bin/extract b/utils/.local/bin/extract index 5739669..5722343 100755 --- a/utils/.local/bin/extract +++ b/utils/.local/bin/extract @@ -3,6 +3,7 @@ if [ -f "$1" ]; then case "$1" in *.tar.bz2) tar -jxvf "$1" ;; *.tar.gz) tar -zxvf "$1" ;; + *.tar.xz) tar -Jxvf "$1" ;; *.bz2) bunzip2 "$1" ;; *.dmg) hdiutil mount "$1" ;; *.gz) gunzip "$1" ;;