commit 5fee1b77be4a101b86608dd09c664feb64a81810
parent e2a7b3f4e2332e81eeefac8a9a900eabfee310bd
Author: MichaelDim02 <31562759+MichaelDim02@users.noreply.github.com>
Date: Sat, 10 Jul 2021 11:50:17 +0000
Update x.sh
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/x.sh b/x.sh
@@ -15,6 +15,7 @@ elif [ "$ext" = "tar.gz" ]; then tar xzf "$1";
elif [ "$ext" = "7zip" ]; then 7za e "$1";
elif [ "$ext" = "7z" ]; then 7za e "$1";
elif [ "$ext" = "bzip2" ]; then bzip2 -d "$1";
+elif [ "$ext" = "tar.bz2" ]; then tar xf "$1";
elif [ "$ext" = "rar" ]; then unrar x "$1";
elif [ "$ext" = "Z" ]; then uncompress "$1";
elif [ "$ext" = "lzma" ]; then lzma -d --stdout "$1" >"$bn";