37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
+
+
+
-
+
|
<dd>`eddie -l -L unlines.sort`</dd>
### The Alternative Bestiary
A collection of commands that do unix-like file processing but don't correspond to a generaly available command (borrowing heavily from http://www.haskell.org/haskellwiki/Simple_unix_tools.)
<dl>
<dt>Repeat a file</dt>
<dd>`eddie cycle`</dd>
<dt>Print a file double spaces</dt>
<dt>Print a file double spaced</dt>
<dd>`eddie -l -L 'unlines . intersperse ""'`</dd>
<dt>Strip blank lines</dt>
<dd>`eddie -l -L 'unlines . filter (not . null)'`</dd>
<dt>Map a file to upper case</dt>
<dd>`eddie toUpper`</dd>
|