Passing gnuplot variables to shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Passing gnuplot variables to shell script
# 1  
Old 11-19-2010
Passing gnuplot variables to shell script

Hi,

I need to pass a gnuplot value to a shell script. I have a main shell script (Main.sh) that has a bunch of gnuplot commands. Main.sh calls another gnuplot script (Child.gnu). A part of the code in Child.gnu is as follows:
HTML Code:
sp '</data/src/scripts/results/plot_data.sh $col' u (A):2:3 w pm3d
col = col + 1
if (col<total_columns) reread
The splot command (sp) calls another shell script call plot_data.sh and needs the variable "col" for further processing. the variable "col" is incremented by Child.gnu. I do not seem to be able to pass the value of "col" to plot_data.sh. I tried using "col and "$col" both don't work. Pls. help!!!!

Thanks
# 2  
Old 11-19-2010
Quote:
Originally Posted by annazpereira
I tried using "col and "$col" both don't work.
In what way does it "not work"? Does the script get no arguments at all, or does it just see col instead of col's value? Or is the script not run at all?

Try putting that block in double-quotes instead of single-quotes.
Quote:
Pls.
No netspeak please.
# 3  
Old 11-19-2010
Sorry about the netspeak Corona. Will try and avoid it the best that I can Smilie

If I use "$col" no arguments are passed to the script. If I use "col", I see "col" instead of its value. I tried using double-quotes but that did not make any difference either.

Thanks
# 4  
Old 11-19-2010
Ahah! It doesn't use $ for that in quotes. Try \col. Bizzare but seems to work for me.
# 5  
Old 11-19-2010
\col passes "col". Keep in mind that this is a gnuplot script and I need to pass the value from gnuplot to shell.

Thankyou.
# 6  
Old 11-19-2010
Yes, I am aware this is a gnuplot script and did a lot of testing. Sorry it doesn't work for you. I haven't seen this < syntax you're using and can't find it in any manual.
# 7  
Old 11-19-2010
Thank you for all the effort Corona. I was trying to plot a wall chart, I was referencing some of the stuff found at : Gnuplot tricks: Return of the wall chart - entirely in gnuplot
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Passing Global Shell variables to awk

Hi All, Iam trying to pass global shell variables and is not working Main script is like below CYEAR=`date +"%y"` CFYEAR=`date +"%Y"` CMONTH=`date +"%m"` if then PMONTH=12 PYEAR=`expr $CYEAR - 1` PFYEAR=`expr $CFYEAR - 1` else PMONTH=`expr... (6 Replies)
Discussion started by: baanprog
6 Replies

2. Shell Programming and Scripting

Passing awk variables to shell

Hi. I need to parse file and assign some values to variables, right now i do like below MYHOMEDIR=`awk '/Home/ {print $NF}' output.txt` MYSHELL=`awk '/Shell/ {print $NF}' output.txt` PRGRP=`awk '/Primary/ {print $NF}' output.txt` SECGRP=`awk '/Second/ {print $NF}' output.txt` In this... (10 Replies)
Discussion started by: urello
10 Replies

3. Homework & Coursework Questions

Passing shell variables to a webpage

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: This is my assignment as a whole - Use SVG to present certain dynamic (the raw data should change at least once... (5 Replies)
Discussion started by: ChedWick
5 Replies

4. UNIX for Dummies Questions & Answers

Passing Shell Variables to an awk command

Hello, I have two files File1 & File2. File1 76 135 136 200 250 345 .... File2 1 24 1 35 1 36 1 72 .... I want to get all the values form File2 corresponding to the range in File 1 and feed it to a program. Is the code below right? Can I pass shell variables to awk in this... (2 Replies)
Discussion started by: Gussifinknottle
2 Replies

5. Shell Programming and Scripting

Using variables in gnuplot within a shell script

Hi everybody, please help me with this problem Suppose I have a script like this to run commands of gnuplot. #!/bin/sh lib=$1 old="output/old/$lib.dat" new="output/new/$lib.dat" gnuplot << EOF set logscale x set logscale y set size square set grid set pointsize 1 plot "< paste $old... (5 Replies)
Discussion started by: Dark2Bright
5 Replies

6. Shell Programming and Scripting

Passing shell variables to a rsh command

I noticed my script is not passing the value of variable alert to the rsh command. I need some assistance, please. This is a solaris environement. Thanks! :confused: #!/bin/sh echo -n "Alert number:" read alert rsh rhost_name 'egrep $alert /opt/var/log/*.logs' (2 Replies)
Discussion started by: lopus
2 Replies

7. Shell Programming and Scripting

Passing the nawk variables to the shell

nawk '($1 ~ "1000") && ($1 ~ "5665" ) { sub ($6,"89");flag =1;print }' old.txt >> new.txt I want to set a flag in awk , if the both conditions are met. I want to pass this flag to shell Can anyone please help me on this (1 Reply)
Discussion started by: prav076
1 Replies

8. Shell Programming and Scripting

Passing Shell Variables in ISQL

Hi.. I am passing a variable in my shell function. I need to access it for an isql comand in the shell script. However the isql o/p gives no results if i pass a variable in the command. The isql command works perfectly fine if i hardcore the table name. My script is : ... (0 Replies)
Discussion started by: dikki
0 Replies

9. Shell Programming and Scripting

Need help passing variables in shell script to perl one-liner

I'm writing a script to automate some post-install tasks on RHEL4 servers. I need the following code to insert an 'A' in the middle of a string, then replace the string in a file. I know I can use sed to do this, but I'd like to use perl's in place edit so I don't have to write to a temp file,... (1 Reply)
Discussion started by: Xek
1 Replies

10. Shell Programming and Scripting

passing two variables into a shell script?

Hello all, i have a infile.txt text file which contains such variables: aaa 123 asds 1323 asdsd 13434 lkjlkj 324324 23432 lkjlkj 24324 ljlkj 3j4lk 234kj3 and i want to pass them to my script such as: ./myscript $1 $2 where $1 is the first value in the first row and $2 is the second... (2 Replies)
Discussion started by: Bashar
2 Replies
Login or Register to Ask a Question