From 1337e49e6d252a97177f024ae1aae82e9613729f Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Wed, 8 Dec 2021 20:46:22 +0100 Subject: [PATCH] bin/b: tiny correction --- .local/bin/scripts/b | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/scripts/b b/.local/bin/scripts/b index 7de093c..ef5a9cb 100755 --- a/.local/bin/scripts/b +++ b/.local/bin/scripts/b @@ -28,7 +28,7 @@ fileinfo() { do case "$arg" in (-*) continue;; esac $elevate file -E "$arg" && ffprobe "$arg" 2>&1 | grep Duration | grep -v '00:00:00.04' | sed 's/, start:[^,]\+,/,/' || - stat --format '%A %s - birth %.10w mod %.10y' "$arg" | numfmt --field=3 --to=iec-i --padding=6 --suffix=B + stat --format '%A %s - birth %.10w mod %.10y' "$arg" | numfmt --field=2 --to=iec-i --padding=6 --suffix=B done }