Remove weird spaces from script output

这个提交包含在:
AJ Jordan 2018-11-30 23:53:45 -05:00
父节点 8000e76d43
当前提交 ce78625bec
找不到此签名对应的密钥
GPG 密钥 ID: A4FDB7BE12F63EC3

查看文件

@ -15,7 +15,7 @@ sysfs_xvda="/sys/class/block/xvda"
# if root filesystem use already (almost) the whole dis
non_rootfs_data=$(( 250 * 1024 * 2 ))
rootfs_size=$(df --block-size=512 --output=size / | tail -n 1)
rootfs_size=$(df --block-size=512 --output=size / | tail -n 1 | tr -d ' ')
if [ $(cat $sysfs_xvda/size) -gt \
$(( non_rootfs_data + rootfs_size )) ]; then
echo "root filesystem already at $rootfs_size blocks" >&2