使用bash将每行的特殊列与下一行进行比较

时间:2017-12-12 13:34:47

标签: bash text compare

我有一个文本文件,按照第一列和第二列排列,如下所示:

1 10
2 15
3 28
4 21
5 22
6 23
7 34
8 17
9 41

我想比较每行的第二列和下一行,如果它更大,则打印它。如果没有,继续直到找到第二列较大的行。输出应该是这样的:

1 10
2 15
3 28
7 34
9 41

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:4)

试试这个脚本:

weights = {
  # 5x5 conv, 1 input, 32 outputs
  'wc1': tf.Variable(tf.random_normal([5, 5, 1, 32])),
  # 5x5 conv, 32 inputs, 64 outputs
  'wc2': tf.Variable(tf.random_normal([5, 5, 32, 64])),
  # fully connected, 7*7*64 inputs, 1024 outputs
  'wd1': tf.Variable(tf.random_normal([7*7*64, 1024])),
  # 1024 inputs, 10 outputs (class prediction)
  'out': tf.Variable(tf.random_normal([1024, num_classes]))
}