From a4342fd525f3718e804414b40e2d82da59cf48e8 Mon Sep 17 00:00:00 2001 From: BrainwreckedTech <3752022+BrainwreckedTech@users.noreply.github.com> Date: Tue, 11 Jan 2022 05:17:48 -0500 Subject: [PATCH] Fix right-justification of columns --- scsictl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scsictl b/scsictl index 74770cd..f4e7dfd 100755 --- a/scsictl +++ b/scsictl @@ -38,7 +38,7 @@ case "${1}" in echo "${DEV_HCIL} ${DEV_PORT} ${BLOCKDEV} ${DEVICE_SZ} ${DEVICE_ID}" >> /tmp/scsictl done sort -n -o /tmp/scsictl /tmp/scsictl - column -N H:C:I:L,PORT,DEV,SIZE,NAME -t -R2,4 -o" " /tmp/scsictl + column -N H:C:I:L,PORT,DEV,SIZE,NAME -t -R1,4 -o" " /tmp/scsictl rm /tmp/scsictl ;; *) echo "Unknown verb '${1}' -- expected delete, list, or rescan"; exit 1;;