001、批量提取列,根据索引index.txt文件批量提取2、4、8、9列
[root@pc1 test2]# ls a.txt index.txt [root@pc1 test2]# cat a.txt ## 测试文件 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 [root@pc1 test2]# cat index.txt ## 索引文件 2 4 8 9 [root@pc1 test2]# awk '{if(NR == FNR) {ay[NR] = $0; idx++} else {for(i = 1; i < idx; i++) printf("%s ", $ay[i]); print $ay[i]}}' index.txt a.txt 002 004 008 009 ## 批量提取 012 014 018 019 022 024 028 029 032 034 038 039 042 044 048 049 052 054 058 059 062 064 068 069 072 074 078 079 082 084 088 089 092 094 098 099
002、批量提取行,根据索引文件,批量提取2、4、8、9行
[root@pc1 test2]# ls a.txt index.txt [root@pc1 test2]# cat index.txt ## 索引文件 2 4 8 9 [root@pc1 test2]# awk '{if(NR == FNR) {ay[$0]} else {if(FNR in ay) print $0}}' index.txt a.txt 011 012 013 014 015 016 017 018 019 020 ## 批量提取 索引文件中的工行 031 032 033 034 035 036 037 038 039 040 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090
。
标签:index,test2,pc1,索引,列和行,Linux,awk,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17759226.html