我有一个 Student.txt 文件,其中包含一些列(姓名、c1、c2、c3、c4),如下所示
Jack Poki theo 100 49 38
.
像上面这样的15个注册表,我想用awk找到名字以J或M开头的学生,并仅打印他们的姓氏和名字
请您参考如下方法:
我认为您正在寻找这个:
awk '/^[JM]/{print $1,$2}' i_ve_got_an_vi_edirtor_with_some_collums.file
更新
Now i need the same but only for students that the surname starts from [A-D]
awk '$2~/^[A-D]/{print $1,$2}' i_ve_got_an_vi_edirtor_with_some_collums.file