From d3fab7c7ff089b2d18ae7508128404dbbcffa2fa Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Thu, 17 Dec 2020 20:49:34 -0800 Subject: [PATCH] check_large_files.bash: adds mapfile --- check_large_files.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_large_files.bash b/check_large_files.bash index f339144d..e23ffa81 100755 --- a/check_large_files.bash +++ b/check_large_files.bash @@ -114,7 +114,7 @@ usage_mnt=`du -shxc .` # Find size of /lib/modules cd /lib/modules -usage_libmod=`du -sh *` +mapfile -t usage_libmod < <(du -sh *) # Find how many kernels are installed cd /boot