![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community. |
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| 'end of file' unexpected | weatherman0516 | Shell Programming and Scripting | 7 | 10-11-2008 01:27 PM |
| 'end of file' unexpected | srisreeku | Shell Programming and Scripting | 1 | 04-28-2008 02:39 PM |
| end of file unexpected | naveeng.81 | Shell Programming and Scripting | 1 | 03-11-2008 06:43 AM |
| unexpected end of file | dineshr85 | Shell Programming and Scripting | 2 | 10-15-2007 02:47 AM |
| 'end of file' unexpected | abhijeetkul | Shell Programming and Scripting | 4 | 04-10-2006 06:42 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
bash-gnuplot: unexpected end of file
Hi
I can't figure out why i get the "unexpected end of file". Code:
#! /bin/bash
for file1 in /figures/*; do
gnuplot << EOF
set terminal postscript eps color enhanced
set output "$file1.eps"
set bar 1.000000
set style rectangle back fc lt -3 fillstyle solid 1.00 border -1
set key inside right top vertical Right noreverse enhanced autotitles columnhead nobox
set datafile missing '-'
set style data linespoints
set xlabel "Index"
set ylabel "Distance"
set logscale y
set xrange [0:7]
plot '$file1' u 4, '' u 6, '' u 8, '' u 10
EOF
done
thank you D. |
| Bookmarks |
| Tags |
| bash, gnuplot |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|