Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据以下文件
打印屏幕上每条记录的第一个和第三个字段的脚本。
只是每条记录的第二个字段并将其存储在 file.txt
打印包含大写字符的行的第二个字段。
27、紫色、恐龙、136 152,粉色,大象,136
27、紫色、恐龙、136
152,粉色,大象,136
awk -F, '{print $1,$3}' inputfile.txt awk -F, '{print $2}' inputfile.txt > file.txt awk -F, '/[[:upper:]]/ {print $2}' inputfile.txt
祝你的任务好运。希望TA不会找到这个帖子。