如何对齐 UNIX 命令输出中的列?

如何对齐 UNIX 命令输出中的列?

我曾经知道一个命令——请注意,这是一个实际的命令,而不是 sed/awk magic——它将其输入格式化为按列对齐。例如,如果您运行:

% echo -e "aaaaa bbbbbbb\ncc ddd"
aaaaa bbbbbbb
cc ddd

但是如果你通过我忘记名称的命令运行输出:

% echo -e "aaaaa bbbbbbb\ncc ddd" | mystery_command
aaaaa    bbbbbbb
cc       ddd

有人知道该命令的名称吗?

答案1

它是column. 尝试举例echo -e "aaaaa bbbbbbb\ncc ddd" | column -t

答案2

awk处理 stdin 的解决方案

由于column不是 POSIX,也许是这样:

mycolumn() (
  file="${1:--}"
  if [ "$file" = - ]; then
    file="$(mktemp)"
    cat >"${file}"
  fi
  awk '
  FNR == 1 { if (NR == FNR) next }
  NR == FNR {
    for (i = 1; i <= NF; i++) {
      l = length($i)
      if (w[i] < l)
        w[i] = l
    }
    next
  }
  {
    for (i = 1; i <= NF; i++)
      printf "%*s", w[i] + (i > 1 ? 1 : 0), $i
    print ""
  }
  ' "$file" "$file"
  if [ "$file" = - ]; then
    rm "$file"
  fi
)

测试:

printf '12 1234 1
12345678 1 123
1234 123456 123456
' > file

测试命令:

mycolumn file
mycolumn <file
mycolumn - <file

全部输出:

      12   1234      1
12345678      1    123
    1234 123456 123456

也可以看看:

相关内容