출력이 있습니다
Student Name: abc
Roll Num: 123
Student Name: xyz
Roll Num: 124
다음 형식으로 인쇄해야 합니다.
Student Name Roll Num
abc 123
xyz 124
누구든지 간단한 리눅스 명령으로 나를 도울 수 있습니까?
답변1
awk
물론 도구 상자에 이 도구만 있는 것은 아닙니다. 이것은밀러실행 중:
%mlr --ixtab --ips : --opprint 고양이 << 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