diff options
| author | Hekuran <hekurangashi@pm.me> | 2021-08-19 13:56:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-19 07:56:44 -0400 |
| commit | 0a6982f1e11a2a528ea110def6fc10da6574a595 (patch) | |
| tree | 7efe85cdf046febde94aad0ffdb596cf413629d3 | |
| parent | f36f2fe539c21b05e06ea83aadc732ee44d785f6 (diff) | |
| download | eibhear-0a6982f1e11a2a528ea110def6fc10da6574a595.tar.gz eibhear-0a6982f1e11a2a528ea110def6fc10da6574a595.tar.zst eibhear-0a6982f1e11a2a528ea110def6fc10da6574a595.zip | |
update `ext` script (#986)
Arch & Artix already have the `libarchive` pkg, which contains `bsdtar`.
So lets just use it, since its superior, faster, it also has easier syntax, and it auto-detects the compression.
btw the .tar.zst was wrong anyhow, so if u wont merge this, dont forget to fix that. from the manual:
```
-I, --use-compress-program=COMMAND
Filter data through COMMAND. It must accept the -d option, for decompression. The argument can contain command line options.
.....
--zstd Filter the archive through zstd(1).
```
| -rwxr-xr-x | .local/bin/ext | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.local/bin/ext b/.local/bin/ext index 927fb5b..6950ff6 100755 --- a/.local/bin/ext +++ b/.local/bin/ext @@ -24,15 +24,15 @@ fi if [ -f "$archive" ] ; then case "$archive" in - *.tar.bz2|*.tbz2) tar xvjf "$archive" ;; - *.tar.xz) tar -xf "$archive" ;; - *.tar.gz|*.tgz) tar xvzf "$archive" ;; - *.tar.zst) tar -I zstd -xf "$archive" ;; + *.tar.bz2|*.tbz2) bsdtar -xf "$archive" ;; + *.tar.xz) bsdtar -xf "$archive" ;; + *.tar.gz|*.tgz) bsdtar -xf "$archive" ;; + *.tar.zst) bsdtar -xf "$archive" ;; + *.tar) bsdtar -xf "$archive" ;; *.lzma) unlzma "$archive" ;; *.bz2) bunzip2 "$archive" ;; *.rar) unrar x -ad "$archive" ;; *.gz) gunzip "$archive" ;; - *.tar) tar xvf "$archive" ;; *.zip) unzip "$archive" ;; *.Z) uncompress "$archive" ;; *.7z) 7z x "$archive" ;; |
