我正在尝试对脚本中的输出数据进行一些格式化,而不是肯定如何做左右对齐以及宽度。有人能指出我正确的方向吗?
答案 0 :(得分:4)
你可以使用printf。实例
$ printf "%15s" "col1"
$ printf "%-15s%-15s" "col1" "col2"
像awk这样的工具也具有格式化功能
$ echo "col1 col2" | awk '{printf "%15s%15s\n", $1,$2}'
col1 col2
答案 1 :(得分:1)
你不是很清楚,但最简单的方法可能只是使用printf()
(shell命令,而不是同名的C函数)。
答案 2 :(得分:0)
左对齐有点微不足道,为了正确对齐你可以使用printf
和环境变量$COLUMNS
这样:
printf "%${COLUMNS}s" "your right aligned string here"
答案 3 :(得分:0)
通过fmt
管道?实际上并不特定于bourne shell,但仍然......
答案 4 :(得分:0)
你可以使用纯粹的bash来做到这一点:
x="Some test text"
width=" " # 20 blanks
echo "${width:0:${#width}-${#x}}$x"
输出是:
' Some test text' (obviously without the quotes)
所以你需要知道的两件事是$ {#var}将得到var中字符串的长度,$ {var:x:y}从x到y位置提取一个字符串。
您可能需要最新版本(在GNU bash 3.2.25上测试)
编辑:想想看,你可以这样做:
echo "${width:${#x}}$x"
答案 5 :(得分:0)
Here是一个Perl脚本,可以完全对齐和连字。
这是一个为该脚本添加左边距功能的差异:
--- paradj.pl 2003-11-17 09:45:21.000000000 -0600
+++ paradj.pl.NEW 2010-02-04 09:14:09.000000000 -0600
@@ -9,16 +9,18 @@
use TeX::Hyphen;
my ($width, $hyphenate, $left, $centered, $right, $both);
-my ($indent, $newline);
+my ($indent, $margin, $newline);
GetOptions("width=i" => \$width, "help" => \$hyphenate,
"left" => \$left, "centered" => \$centered,
"right" => \$right, "both" => \$both,
+ "margin:i" => \$margin,
"indent:i" => \$indent, "newline" => \$newline);
my $hyp = new TeX::Hyphen;
syntax() if (!$width);
$indent = 0 if (!$indent);
+$margin = 0 if (!$margin);
local $/ = "";
@@ -147,6 +149,7 @@
}
}
+ print " " x $margin;
print "$lineout\n";
}
}
@@ -185,6 +188,9 @@
print "initial\n";
print " indention (defaults ";
print "to 0)\n";
+ print "--margin=n (or -m=n or -m n) Add a left margin of n ";
+ print "spaces\n";
+ print " (defaults to 0)\n";
print "--newline (or -n) Output an empty line \n";
print " between ";
print "paragraphs\n";