我有一个Python中的实用程序脚本:
原文链接:https://www.f2er.com/bash/390502.html#!/usr/bin/env python import sys unique_lines = [] duplicate_lines = [] for line in sys.stdin: if line in unique_lines: duplicate_lines.append(line) else: unique_lines.append(line) sys.stdout.write(line) # optionally do something with duplicate_lines
这个简单的功能(uniq不需要排序,稳定排序)必须作为一个简单的UNIX实用程序可用,不可以吗?也许在管道中的过滤器的组合?
请求原因:在一个系统上需要这个功能,我不能在任何地方执行python