summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2023-08-30 15:05:00 -0700
committerTyler Davis <tyler@gluecode.net>2023-08-30 15:05:00 -0700
commit6f72852a4c42321e0ee76de8a10f15061e6928b3 (patch)
tree843513944ce32268ee5becd098aa171b9ab10eeb /.profile
parent4a4ac8a09b759a54d813cee5e6bdb6e6812074e0 (diff)
downloaddotfiles-6f72852a4c42321e0ee76de8a10f15061e6928b3.tar.gz
dotfiles-6f72852a4c42321e0ee76de8a10f15061e6928b3.zip
sh: use all threads for zstd options
Diffstat (limited to '.profile')
-rw-r--r--.profile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.profile b/.profile
index 152e366..e41945c 100644
--- a/.profile
+++ b/.profile
@@ -30,9 +30,9 @@ alias ls='/bin/ls -F'
## Zstd always uses all cores
if [ "$(command -v zstd)" ]; then
alias zstd='zstd -T0'
- alias xz='zstd --format=xz'
- alias gzip='zstd --format=gzip'
- alias gunzip='zstd -d --format=gzip'
+ alias xz='zstd -T0 --format=xz'
+ alias gzip='zstd -T0 --format=gzip'
+ alias gunzip='zstd -T0 -d --format=gzip'
fi
# == Rust Tools ==#