Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Finally got the README sorted out |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f358b78a2cfdbb8a2596de33bee5cfcf |
| User & Date: | mwm 2015-03-19 07:17:04.560 |
Context
|
2015-03-19
| ||
| 07:22 | Fix the link in the README. check-in: 98bcb1ad7f user: mwm tags: trunk | |
| 07:17 | Finally got the README sorted out check-in: f358b78a2c user: mwm tags: trunk | |
|
2015-03-18
| ||
| 03:35 | Try and fix wiki links in markdown README. Again. check-in: 7e52670589 user: mwm tags: trunk | |
Changes
Changes to README.md.
1 2 3 4 | # What is eddie? A command line tool for running Haskell functions over text files. | < < < < < | 1 2 3 4 5 6 7 8 9 10 11 | # What is eddie? A command line tool for running Haskell functions over text files. It is also useful for prototyping Haskell text processing functions that you will later copy into a program. # Why is eddie? This project actually started in response to a code bounty for a clojure shell scripting tool. That resulted in a specification for the |
| ︙ | ︙ | |||
31 32 33 34 35 36 37 | * When given file arguments, eddie feeds them to your function. * Eddie can easily add modules to the namespace you use. * Eddie has options for processing things a line or file at a time. * Eddie will use binary file IO methods when asked to. # More information | | | < < | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | * When given file arguments, eddie feeds them to your function. * Eddie can easily add modules to the namespace you use. * Eddie has options for processing things a line or file at a time. * Eddie will use binary file IO methods when asked to. # More information The best place to start is the manual. That's available in the source tree in both man format in `eddie.1`, and in html in `eddie.html`. The latter is also available [online](/doc/ckout/eddie.html). # Installation Install or build with cabal as usual. # Testing Test use the haskell shelltestrunner package (can be installed with cabal). Run `shelltest tests` in the source directory to run the tests with the currently installed eddie. Use `shelltest tests -w eddie.hs` to run them using the current |
| ︙ | ︙ |
Deleted README.wiki.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to eddie.1.
| ︙ | ︙ | |||
119 120 121 122 123 124 125 | 0. If there are problems with the options, such that the expression is never evaluated, then eddie will exit with a status of 1. If haskell returns an error \- probably a compilation problem \- then eddie will exit with the status of 2. .SH SEE ALSO .PP | > | | > | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | 0. If there are problems with the options, such that the expression is never evaluated, then eddie will exit with a status of 1. If haskell returns an error \- probably a compilation problem \- then eddie will exit with the status of 2. .SH SEE ALSO .PP The wiki at <https://chiselapp.com/user/mwm/repository/eddie/wcontent> for examples. .SH BUGS .PP See the issues list at <https://chiselapp.com/user/mwm/repository/eddie/rptview?rn=1>. .SH AUTHOR .PP Mike Meyer <mwm@mired.org> |
Changes to eddie.html.
| ︙ | ︙ | |||
52 53 54 55 56 57 58 | <dt><strong>--Modules</strong></dt> <dd>The <strong>--Modules</strong> <em>name</em>,<em>as</em> (short form <strong>-M</strong> <em>name</em>,<em>as</em>) option imports the <em>name</em> module using a qualified import with an as clause, with <em>as</em> being the value for the as clause. </dd> </dl> <h1 id="diagnostics">DIAGNOSTICS</h1> <p>If the command runs with no problems, eddie will exit with a status of 0. If there are problems with the options, such that the expression is never evaluated, then eddie will exit with a status of 1. If haskell returns an error - probably a compilation problem - then eddie will exit with the status of 2.</p> <h1 id="see-also">SEE ALSO</h1> | | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<dt><strong>--Modules</strong></dt>
<dd>The <strong>--Modules</strong> <em>name</em>,<em>as</em> (short form <strong>-M</strong> <em>name</em>,<em>as</em>) option imports the <em>name</em> module using a qualified import with an as clause, with <em>as</em> being the value for the as clause.
</dd>
</dl>
<h1 id="diagnostics">DIAGNOSTICS</h1>
<p>If the command runs with no problems, eddie will exit with a status of 0. If there are problems with the options, such that the expression is never evaluated, then eddie will exit with a status of 1. If haskell returns an error - probably a compilation problem - then eddie will exit with the status of 2.</p>
<h1 id="see-also">SEE ALSO</h1>
<p>The wiki at <a href="https://chiselapp.com/user/mwm/repository/eddie/wcontent" class="uri">https://chiselapp.com/user/mwm/repository/eddie/wcontent</a> for examples.</p>
<h1 id="bugs">BUGS</h1>
<p>See the issues list at <a href="https://chiselapp.com/user/mwm/repository/eddie/rptview?rn=1" class="uri">https://chiselapp.com/user/mwm/repository/eddie/rptview?rn=1</a>.</p>
<h1 id="author">AUTHOR</h1>
<p>Mike Meyer <script type="text/javascript">
<!--
h='mired.org';a='@';n='mwm';e=n+a+h;
document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'" clas'+'s="em' + 'ail">'+e+'<\/'+'a'+'>');
// -->
</script><noscript>mwm at mired dot org</noscript></p>
|
| ︙ | ︙ |