다음 파일이 있습니다 conf.txt
.
perl /home/site/gen.pl "GG - W C1 Test - sai1" "15072" && ssh 13.4.93.103
perl /home/site/gen.pl "GG - W C1 Test - sai2" "15072" && ssh 13.4.93.104
perl /home/site/gen.pl "GG - W C1 Test - sai3" "15072" && ssh 13.4.93.105
세 번째 필드를 인쇄하는 방법 - "...." 사이,
예를 들어
GG - W C1 Test - sai1
GG - W C1 Test - sai2
GG - W C1 Test - sai3
답변1
다음을 사용해 보세요 awk
:
awk -F'"' '{ print $2 }' conf.txt
답변2
cut -d\" -f2 <infile >outfile
그게 당신이 필요한 전부입니다.