수하스

수하스

나는 이 스크립트를 작성했습니다.

#!/bin/bash

clear

echo -e "---------------------------------------------------------------------"
echo -e "| Client Name      | No. of Backups | Size    | Is Partial | Type    |"
echo -e "---------------------------------------------------------------------"

vcenter_name=$(cat /usr/local/vdr/etc/vcenterinfo.cfg | grep vcenter-hostname | cut -d '=' -f 2)
client_list=$(avmgr getl --path=/$vcenter_name/VirtualMachines | awk '{print $2}' | tail -n+2)
base=1073741824

        for i in $client_list
        do

                number_of_backup=$(avmgr getb --path=/$vcenter_name/VirtualMachines/$i | tail -n+2 | wc -l)
                size=$(avmgr getb --path=/$vcenter_name/VirtualMachines/$i --format=xml | sed 's/ /\n/g' | grep totalbytes | head -n 1 | cut -d '=' -f 2 | tr -d '"' | cut -d '.' -f 1)
                sizeInGB=$((size/base))GB
                partial=$(avmgr getb --path=/$vcenter_name/VirtualMachines/$i --format=xml | sed 's/ /\n/g' | grep partial | cut -d '=' -f 2 | tr -d '"' | head -n 1)
                if [ "$partial" == 0 ]
                then
                    type="NO"
                else
                    type="YES"
                fi
                pid=$(avmgr getb --path=/$vcenter_name/VirtualMachines/$i --format=xml | sed 's/ /\n/g' | grep pidnum | cut -d '=' -f 2 | tr -d '"' | head -n 1)
                if [ "$pid" == 3016 ] 
                then
                    pidType="Windows"
                else
                    pidType="Linux"
                fi
                printf "|  $(echo $i | cut -d '_' -f 1)           |       $number_of_backup        | $sizeInGB     | $type         | $pidType |\n"
        done

스크립트는 매우 잘 작동합니다. 그러나 출력은 매우 왜곡됩니다.

---------------------------------------------------------------------
| Client Name      | No. of Backups | Size    | Is Partial | Type    |
---------------------------------------------------------------------
|  Test-Machine                |       1        | 2GB     | NO         | Linux |
|  VM-A                |       3        | 1GB     | NO         | Windows |
|  VM-B                |       3        | 1GB     | NO         | Windows |
|  VM-C                |       3        | 1GB     | NO         | Windows |
|  VM-D                |       3        | 0GB     | NO         | Windows |

주요 초점은 첫 번째 열인 에 있습니다 Client Name. 이름은 가변 길이일 수 있습니다. 고객 이름만을 기준으로 열 1의 크기를 자동으로 조정할 수 있나요? 이 열의 고객 이름은 최대 20자까지 포함할 수 있습니다.

매우 감사합니다.

수하스

답변1

사용 printf:

printf '%-20s|\n' 'abc' 'abcdefghijklmnop'

산출:

abc                 |
abcdefghijklmnop    |

귀하의 경우:

    printf "| %-20s | %14s | %4s | %10s | %7s |\n" \
       "$(echo $i | cut -d '_' -f 1)" "$number_of_backup" "$sizeInGB" "$type" "$pidType"

관련 정보