Up to [cvs.NetBSD.org] / pkgsrc / textproc / zet
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: pkgsrc-2021Q3-base
Revision 1.1 / (download) - annotate - [select for diffs], Tue Jun 15 07:27:30 2021 UTC (23 months, 1 week ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
HEAD
textproc/zet: import package This is a command-line utility for doing set operations on files considered as sets of lines. For instance, `zet union x y z` outputs the lines that occur in any of `x`, `y`, or `z`. Two notes: -Each output line occurs only once, because we're treating the files as sets and the lines as their elements. -We do take the file structure into account in one respect: the lines are output in the same order as they are encountered. So `zet union x` prints out the lines of `x`, in order, with duplicates removed.