以表格形式列出输出

以表格形式列出输出

我有一个输出

Student Name: abc
Roll Num: 123

Student Name: xyz
Roll Num: 124

我需要以下面的格式打印

Student Name     Roll Num
abc              123
xyz              124

有人可以帮我简单的linux命令吗

答案1

awk当然,它并不是工具箱中唯一的工具。这是磨坊主行动中:

%mlr --ixtab --ips : --opprint cat << END
学生姓名:abc
卷数:123

学生姓名:xyz
卷数:124

结尾
学生姓名 卷号
 ABC 123
 XYZ 124
%

-ixtab您正在执行从 XTAB 格式 ( ) 到 PPRINT 格式 ( )的转换-opprint

答案2

任君选择:

$ awk -v RS= -F': |\n' -v OFS='\t' 'NR==1{print $1, $3} {print $2, $4}' file
Student Name    Roll Num
abc     123
xyz     124

$ awk -v RS= -F': |\n' -v OFS='\t' 'NR==1{print $1, $3} {print $2, $4}' file | column -s$'\t' -t
Student Name  Roll Num
abc           123
xyz           124

$ awk -v RS= -F': |\n' -v fmt='%-13s %-13s\n' 'NR==1{printf fmt, $1, $3} {printf fmt, $2, $4}' file
Student Name  Roll Num
abc           123
xyz           124

答案3

Method1

awk 'BEGIN{print "Student Name";RS="Student Name:"}{print $1}' p.txt| awk '$0 !~ /^$/' >student.txt
awk   'RS="Roll Num"{print $2}' p.txt|sed '/Name/,/^$/d'| awk 'BEGIN {print "Roll Num"}{print $0}' > roll.txt


paste student.txt  roll.txt


output

Student Name     Roll Num
abc              123
xyz              124



 Method2

awk 'BEGIN{print "Student Name"}{if($1 ~ /Student/){print $3}}' p.txt > student.txt

awk 'BEGIN{print "Roll Num"}{if($1 ~ /Roll/){print $3}}' p.txt > roll.txt

paste student.txt  roll.txt


output

Student Name     Roll Num
abc              123
xyz              124

相关内容