1

我有以下内容:

...
#define DIRT 4
#define PLANKS 5
#define WOOD_PLANKSs 5
#define BRICKS 6
...

我需要删除与它们之前的行具有相同编号的行之一(例如,删除木板,因为木板具有相同的编号,5)。

是否有一种方法可以在 linux(或 Windows)脚本中执行此操作,可能使用 if then 语句?

4

2 回答 2

5

在 Linux 中,使用uniq命令和-f参数跳过比较前两个字段:uniq -f 2 <your-file>

于 2013-10-21T19:25:04.323 回答
2

创建一个名为 removeDup.awk 的 awk 脚本

  1 BEGIN      { lastDefine=""
  2            }
  3 /^#define/ { if (lastDefine=="") {
  4                lastDefine=$3
  5              } else {
  6                if (lastDefine==$3) {
  7                  next
  8                } else {
  9                  lastDefine=$3
 10                }
 11              }
 12            }
 13            { print
 14            }

awk -f removeDup.awk 文件名

于 2013-10-21T19:36:02.593 回答