Skip to content

Commit a656036

Browse files
Manual
1 parent 9d9c116 commit a656036

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,37 @@ ec is also usefull if the columns in the original file are not separated by whit
8383

8484
```
8585
cat data.txt | ec -; 5 3 | eplot -M
86-
``
86+
```
87+
88+
## Installation
89+
90+
No setup is necessary. Just download the script files (eplot and ec) and put them into a directory which is in the PATH of your shell. Just be sure that the ruby shell is available as /usr/bin/ruby, else create a link or change the first line of each script.
91+
92+
The standard configuration of the script only works with gnuplot 4.0 or newer, the reason being a couple of changes in the gnuplot syntax. However, the script may be adapted to older versions by a unique and simple change: set the variable "$GnuPlot4OrNewer" at the beginning of the script (in the configuration section) to "false":
93+
94+
```
95+
$GnuPlot4OrNewer=false
96+
```
97+
98+
##### Gnuplot
99+
100+
eplot is based on Gnuplot and needs Gnuplot 4.0 or newer. Older versions are supported but a variable must be changed in the eplot script (see the download section)
101+
102+
##### Ruby
103+
104+
eplot and ec are completely written in the ruby programming language, so you need to have the ruby runtime package installed. Ruby comes with most Linux distributions.
105+
106+
## Credits
107+
108+
eplot was written by [Christian Wolf](http://liris.cnrs.fr/christian.wolf).
109+
The dumb terminal patch was provided by Peter Barnes.
110+
111+
## Licence
112+
113+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
114+
115+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
116+
117+
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
118+
119+

0 commit comments

Comments
 (0)