From 225b8010d7ceccc6e70705f225dae448fded2aba Mon Sep 17 00:00:00 2001 From: Jacob Sanford Date: Thu, 27 Jun 2024 11:23:08 -0300 Subject: [PATCH] Correct byte flag --- build/scripts/diskFree.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/diskFree.sh b/build/scripts/diskFree.sh index 3337eee..d7b9261 100755 --- a/build/scripts/diskFree.sh +++ b/build/scripts/diskFree.sh @@ -1,3 +1,3 @@ #!/usr/bin/env sh -df -P B1 . | sed 1d | grep -v used | awk '{ print $4 "\t" }' +df -P -B1 . | sed 1d | grep -v used | awk '{ print $4 "\t" }'