質問編集履歴

1

補足

2021/01/07 07:46

投稿

candycorn
candycorn

スコア9

test CHANGED
File without changes
test CHANGED
@@ -27,3 +27,9 @@
27
27
  $ cat test_result.csv | awk -F"," -v hoge="NUMBER" '{print $1,"\t",hoge}' | sort | uniq | sed '/^NA\t/d'
28
28
 
29
29
  ```
30
+
31
+
32
+
33
+ ###補足
34
+
35
+ ちなみに、```sed '/^NA\t/d'```を```sed '/^NA/d'```にするとパターン2でも正常な結果が帰ってくるのですが、これだと私が求めている結果と違う結果となってしまうため使用できません。