From 6b543680354d1c69207e961dfeeb70409a6ef257 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 14 Nov 2019 18:35:58 -0500 Subject: [PATCH] Remove the useless --parallel parameter from sort which isn't supported in BSD sort anyways. --- home/lib/login_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/lib/login_functions.sh b/home/lib/login_functions.sh index fd9beaf..b8e9f41 100644 --- a/home/lib/login_functions.sh +++ b/home/lib/login_functions.sh @@ -2,7 +2,7 @@ # TODO: Consider using numfmt instead of awk tdu() { du "$1" \ - | sort -n -k 1 -r --parallel="$(nproc)" \ + | sort -n -k 1 -r \ | head -50 \ | awk ' { -- 2.20.1