Penguin
Blame: TextUtilities
EditPageHistoryDiffInfoLikePages
Annotated edit history of TextUtilities version 4, including all changes. View license author blame.
Rev Author # Line
1 GlynWebster 1 Command line Programs to manage text
2
3 ; cat(1) : Con__cat__inate files to standard out
4 ; sort(1) : a filter to sort text
5 ; uniq(1) : a filter to remove duplicate lines from a file
6 ; grep(1) : a filter to find regex(7)'s in files
7 ; tr(1) : a filter to translate from one charactor set to another
8 ; sed(1) : a simple script editor, mostly used for it's search and replace
9 ; join(1) : a filter to join two files together based on a common column
10 ; cut(1) : a filter to "cut" out different columns
11 ; paste(1) : the reverse of cut
4 AlastairPorter 12 ; head(1) : display the top of a file
13 ; tail(1) : display the bottom of a file
1 GlynWebster 14 ; awk(1) : a simple scripting language for managing (mangling?) text files
15 ; perl(1) : The swiss army knife of text processing
16 ; python(1) : Yet another swiss army knife of text processing
17
18
2 AristotlePagaltzis 19 Perhaps you were more interested in a TextEditor.
3 PerryLorier 20
21 ----
22 CategoryUtilities