eddie
Changes To UnixCommands
Not logged in
Public Repositories
mwm's Repositories

Changes to "UnixCommands" between 2015-05-22 15:09:07 and 2015-05-22 15:10:11

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>