General :: Gnuplot Variables Into Shell?

Feb 17, 2010

in gnuplot it's possible to set the value of a variable via linux shell command.or instance we can do

Code:
a="`echo 1`"
b="`echo 2`"

[code]...

View 3 Replies


ADVERTISEMENT

General :: Experimenting With Shell Variables?

Oct 12, 2010

Explain the following unexpected results

$ whereis date
date: /bin/date ?
$ echo $ PATH

[code]...

View 5 Replies View Related

General :: Variables Between Shell Scripts?

May 20, 2010

Ive created some custom shell scripts to run during the kernels boot process (they are called from the init script).I was wondering if there's any way to assign a variable that can be accessed between different scripts.For example my first script checks which type of pc i am installing on and assigns the hard drive location to a variable.HARDDRIVE = "/dev/sda1"at the end of the script it calls another script. In this script I cant reference HARDDRIVE as it is blank, to get around this I need to repeat the same code for assigning it.Its more of a space/aesthetics issue but I figured someone might know the solution off the top of their head

View 1 Replies View Related

General :: Shell Scripts Variables Test?

Aug 5, 2010

What will be the output of the following Shell Script?

Code:
a="1245"
[-n $a]

[code]...

View 5 Replies View Related

General :: Set Environment Variables For A Particular User On C Shell Configurations?

Jun 2, 2011

I have been give a task of replicating one of our production systems to create a test system. I have been restricted to use c shell to set up its environment variables. I am new to this my questions is how do i set environment variables for a particular user on c shell e.g ORACLE_HOME and ORACLE_SID permanently for a particualar user i know in bash you edit the .bash_profile file. What do i do for c shell?

View 2 Replies View Related

General :: Changing Shell From C To Bash - Apps Or Variables?

Jun 21, 2010

I have a user that has been used for long time now that runs o C Shell... now there is a need to change it to Bash Shell? Can I cause a problem changing his shell from C to bash? I mean apps or variables?

View 2 Replies View Related

General :: Formatting - Shell Script That Outputs Few Variables

Jun 6, 2011

I hav a shell script that outputs few variables. i want to output them in a table format. any unix commands?

The output i need is:

View 4 Replies View Related

Programming :: Setting Variables In C-shell?

Jul 12, 2010

I'm running into a problem when I try to set a variable to an awk output in c-shell. Right now my command is Code: set STR_MSG_TYPE = `awk -F{ '/msg_type/ {print $2}' <filename> | tr -d }'/''*' ` I then run echo to see what the output is and it returns blank, however, when I run the same awk command from the command line, I get an actual output of "MT-715". Am I setting my variable incorrectly? I do something similar using the date command to set a STR_DATE variable earlier in the code and it works fine and I use the same syntax.

View 1 Replies View Related

Programming :: Shell - Substition Of Variables?

Mar 22, 2011

i have following code :

Code:
TMPDIR=`mktemp -d`
mkdir $TMPDIR/old/

[code]...

View 3 Replies View Related

Red Hat :: Call CGI W/POST Variables From Shell?

Jun 16, 2009

I've got a CGI that I'm trying to debug. Apache gives me an ambiguous 500 error; it would be nice to see the raw output via the shell. I've got the POST request w/headers as follows. What's the best way to troubleshoot this?

POST /cgi/packBoxes.cgi HTTP/1.1
Host: 70.87.60.214
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8

[code].....

View 1 Replies View Related

Programming :: Advanced Uses Of Variables In Korn Shell?

Jul 28, 2011

Somehow I'm not really managing this thing, which would d be a nice way to useariables.What I am doing is setting up compound variable in ksh. What I have is a "config" file, which has fields delimited by a semicolon

Code:
cat ${CONFIGFILE} | grep -v "^#" | grep -v "^$" | while read line
do

[code]...

View 14 Replies View Related

Programming :: Exporting Makefile Variables To $(shell) Environment?

May 12, 2010

I'm aware that one can export make variables to other makefiles; however, how does one export them to the environment of $(shell)? Take the example below:

Code:
export TEST
VARIABLE=$(shell echo $$TEST)
.PHONY: all
all:
#$(VARIABLE)

In this example, I might call make TEST=test. The goal is for $TEST to be available to the environment of the shell escape. This is because I need its value in a script which is called. For example:

Code:
VARIABLE=$(shell i-need-TEST.sh)My current solution is the following:VARIABLE=$(shell export TEST="$(TEST)"; i-need-TEST.sh) but this only works if I know all if the variables needed at that point (as opposed to being able to export variables in included makefiles.) Is there an easy solution?

View 4 Replies View Related

Programming :: Indexing Variables In Lists Using Shell Scripts?

May 27, 2010

I have a question concerning indexing over lists with unix shell scripts. I have very large text files (up to 20 Gb) with the data shown below:

80011412865610
43000216943210
4710510513101

[code]...

View 14 Replies View Related

Red Hat :: Setting System Wide Shell Variables In RHEL5?

May 10, 2010

I have an RHEL 5 server joined to a windows domain. However I wanted to add variable lines to be executed each time a user logs in. However I succeeded to put them in /etc/bashrc file and it worked like a charm.
But its annoying that everytime the user logs in to the shell remotely it displays the whole variables that were declared. Is there a way how to add them once and not to display the output each time the user logs in?

View 10 Replies View Related

Ubuntu :: Write A Simple Shell Script And Environment Variables?

Feb 8, 2010

I'm trying to write a simple shell script, its purpose is not important. The script needs to make use of the system $HOSTNAME environment variable. I had a look at this page which provides the following example.

Code:
#!/bin/sh
echo "You are user $UID on $HOSTNAME"
echo "Your home directory is: $HOME"
echo "$HOSTNAME is running $OSTYPE"

[Code]...

View 6 Replies View Related

Programming :: C-shell Scripting Syntax Error When Defining Two Variables A1 And A2

Apr 5, 2011

I am trying to modify a script for research purposes and am having difficulty here as I have little prior experience with C-shell scripting.

The script looks as follows (it includes tcl commands like runFEP that you can ignore)

#!/bin/bash

for ((old=1, new=2; old<=4; old++,new++))
a1=${old}%50
a2=${new}%50
do
cat > input${new}.conf <<EOF
${a1}
code....

My question: I keep getting a syntax error when defining my two variables a1 and a2. I essentially need these variables to be
a1 = value of variable old divided by 50
a2 = value of variable new divided by 50

View 1 Replies View Related

General :: Make A Lineal Regression With Gnuplot?

Apr 6, 2011

How to make a lineal regression with gnuplot, I was told this can be done but I don't understand how

View 2 Replies View Related

Ubuntu :: Bash Script With Variables And Editing Variables

Apr 6, 2011

mkvmerge -o <filename without extension>_TV.mkv -S <filename> && mkvextract tracks <filename> 3:<filename without extension>.*** && perl /home/brian/Desktop/ass2srt.pl <filename without extension>.*** && rm <filename without extension>.***

Doing these commands for multiple command line file inputs is the goal. So I can just type ./script.sh *.mkv in my terminal.This is what I have so far, but it doesn't work whatsoever.

View 2 Replies View Related

Ubuntu :: Update Gnuplot 4.2 To 4.4?

Aug 10, 2010

how to update my gnuplot 4.2 to 4.4? Have tried to uninstall gnuplot 4.2 over synpatic, but it still exists. So how do I continue?

View 4 Replies View Related

Ubuntu :: Can't Get Gnuplot To Work / What To Do?

Apr 11, 2011

I have installed gnuplot but nothing appears when I tell it to plot sin(x)

I'm using Ubuntu 10.4 and downloaded gnplot 4.4.3
I need it for a class assignment

If you think I should go to another area of the forum.....just direct me there.v

View 6 Replies View Related

Red Hat :: Gnuplot 3.7 - Couldn't Able To Set Term To Png

Jan 24, 2011

I am new to Red Hat Enterprise Linux and now i'm supposed to practice gnuplot especially png. I downloaded 1 gnuplot i saw from internet and i couldn't able to set term to png. I think i'm supposed to run gnuplot 3.7. how to install gnuplot v3.7?

View 1 Replies View Related

Slackware :: Uninstall Gnuplot 4.2 At 12.2

Mar 31, 2010

My laptop has Slackware 12.2 and I installed gnuplot 4.2 patchlevel 5. But in this moment I need to install gnuplot 4.4. First I like to uninstall gnuplot 4.2, but I can't uninstall this programm.

I do slackpkg remove gnuplot and obtaining Looking for gnuplot in package list. Please wait... DONE

The file remove can't be removed - package not installed.

But Gnuplot 4.2 was installed at my laptop. I can do graphics and its version is @science:~$ gnuplot --version gnuplot 4.2 patchlevel 5

How to uninstall this version and to install gnuplot 4.4.

View 9 Replies View Related

General :: $HOME/.bashrc Disabled When User Shell Is 'rbash' (restricted Shell)?

Jun 15, 2011

MACHINE: HP Proliant DL260G5OS: SLES 11 SP1kernel: Linux xserver 2.6.32.12-0.7-default #1 SMP 2010-05-20 11:14:20 +0200 x86_64 x86_64 x86_64 GNU/LinuxIt is used as remote xserver in a LAN.I have configured /usr/lib/restricted/bin/.rbashrc with some environment variables but when the users logon in the system finally is executed $HOME/.bashrc and some environment vars are overwritten.

View 2 Replies View Related

Programming :: Create Graph In Gnuplot ?

Jan 3, 2010

I need a script that takes data fom a file mydata.dat and create a graph. the content of mydata.dat is Bin Data1 Data2 Data3

Then it asks from the user to select which colums with use for x and which for y. the x and y titles must be generated automaticly by the names of each column from the first line of mydata.dat the limits must also be auto generated by the width of the column (for example for data2 is 12-45). in the end for graph title must shown the current time and date in this format:

So it asks for the user the columns and in the end it shows the graph with the above settings.

View 3 Replies View Related

General :: Write A Shell Script Instead Of Shell Function?

Apr 27, 2011

I would like know when it is necessary or advisable to write a shell script instead of shell function ?

View 3 Replies View Related

Fedora :: Gnuplot Freezes After First Plot / Sort It?

Jul 8, 2011

I'm using 64-bit fedora 14 on my desktop. i was using gnuplot, but there was some power failure and my computer got shut down. now whenever i plot anything it freezes after first plot i have to force quit it

View 7 Replies View Related

Software :: Get The Graph In Image Format Through GNUPLOT ?

Feb 3, 2010

I am using GNUPLOT for plotting graphs but don't know how to save the graph as an image (irrespective of the format). If someone knows the correct GNUPLOT command for this, please tell me. Note that I have read: [url]but it does not satisfy.

View 6 Replies View Related

Software :: How To Set Equi-distant Xtics In GNUPLOT

Feb 4, 2010

Plotting with GNUPLOT, I have these values at x-axis:Quote:0, 20, 40, 80For this I have used:uote:set xtics (0,20,40,80)Note that distance between 0, 20 and 40 is equal (i.e 20) but it is not equal between 40 and 80 (i.e. 40). Therefore it shows xtics at 0, 20, and 40 with equal gaps (equally spaced) and inserts more gap between xtics of 40 and 80. I want all the xtics equally spaced. Is it possible?

View 12 Replies View Related

Software :: Gnuplot Script - Take A Csv File Of The Format

Jul 7, 2011

I'm trying to write a small gnuplot script that takes a csv file of the format

[Code]...

plot "test.csv" using 1:($2/3600) "label_1,%lf,%lf" with lines title 'LABEL 1', I get the error "line 10: x range is invalid" If I set the xrange, i get "y range" is invalid, if I set that I get no vaild points. If i don't apply the command "set xdata time" then it works but the x axis is just displayed as integers and not a dates, which is my end goal

View 4 Replies View Related

Programming :: Gnuplot Graph Using Trace File

May 1, 2011

How to plot graphs for trace files generated in ns2 using xgraph and gnuplot.

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved