aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/config/lf/commands/scripts/unarchive
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-28 22:10:24 +0200
committerSoispha <soispha@vhack.eu>2023-05-28 22:10:24 +0200
commite5af81a5f9d9d3a2af0d3e970815e3c73beb0840 (patch)
treea8acf6adde5c6f509bf523c28d4243869a3d1107 /home-manager/config/lf/commands/scripts/unarchive
parentFix(bootstrap): Quote scripts (diff)
downloadnixos-config-e5af81a5f9d9d3a2af0d3e970815e3c73beb0840.zip
Fix(hm/conf/lf/cmds): Rework some of them
Diffstat (limited to '')
-rwxr-xr-xhome-manager/config/lf/commands/scripts/unarchive11
1 files changed, 6 insertions, 5 deletions
diff --git a/home-manager/config/lf/commands/scripts/unarchive b/home-manager/config/lf/commands/scripts/unarchive
index b0e3ab10..228cdf99 100755
--- a/home-manager/config/lf/commands/scripts/unarchive
+++ b/home-manager/config/lf/commands/scripts/unarchive
@@ -6,16 +6,17 @@ SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH
# extract the current file with the right command
# (xkcd link: https://xkcd.com/1168/)
set -f
+# TODO add support for multiple files at once
case "$f" in
- *.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjvf $f;;
- *.tar.gz|*.tgz) tar xzvf $f;;
- *.tar.xz|*.txz) tar xJvf $f;;
- *.zip) unzip $f;;
+ *.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjvf "$f";;
+ *.tar.gz|*.tgz) tar xzvf "$f";;
+ *.tar.xz|*.txz) tar xJvf "$f";;
+ *.zip) unzip "$f";;
*.rar)
die "rar is a unfree format!"
#unrar x $f
;;
- *.7z) 7z x $f;;
+ *.7z) 7z x "$f";;
*) die "Unsupported format" ;;
esac
# vim: ft=sh