Sponsored Content
Top Forums Shell Programming and Scripting Syntax to export any variable Post 71906 by vino on Tuesday 17th of May 2005 03:13:06 AM
Old 05-17-2005
If you are using /bin/sh then use this

export MYNAME=malay

echo $MYNAME will give
malay
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Export command giving Variable Name vs the Value set for the Variable

I'm having an issue when I export within my program. I'm getting the variable name, not the variable value. I have a configuration file (config.txt) that has the values of the variables set as so: set -a export ARCHIVEPOSourceDir="/interfaces/po/log /interfaces/po/data" export... (2 Replies)
Discussion started by: ParNone
2 Replies

2. UNIX for Dummies Questions & Answers

How to export the Display variable

I'm trying to open an xwindow on my Sun server. What am I doing wrong? # echo $SHELL /sbin/sh # # export DISPLAY=localhost:0.0 DISPLAY=localhost:0.0: is not an identifier Thank you! (1 Reply)
Discussion started by: FredSmith
1 Replies

3. Shell Programming and Scripting

Export Variable

How to export variable from one script to other? Can anybody give me syntax for that? Thanks (2 Replies)
Discussion started by: navi
2 Replies

4. Shell Programming and Scripting

export variable question

simple question: for example if i use: export http_proxy=proxy:8080 and i have this script: while true; do .... lynx Google ;; wget The UNIX and Linux Forums - Learn UNIX and Linux from Experts ;; ... esac done So i must "export http_proxy=proxy:8080" before any lynx and wget... (4 Replies)
Discussion started by: aspire
4 Replies

5. Shell Programming and Scripting

Seeing variable which are exported with export

Greeting to all of you! I've small issue related to the variable which we are setting and exporting through scripts, in one of the script there are some variable used but I am not abel to get the detail as where they are set. I tried finding the detail with the help of env but no luck. ... (2 Replies)
Discussion started by: kumarmani
2 Replies

6. Shell Programming and Scripting

Export variable

Hi I have a pass a variable from one script to another. Here are my scripts Script #1 ./profile #!/bin/sh export NAME="Hello" Script #2 ./test #!/bin/sh ./profile echo $NAME when I run ./test .. i am not getting anything .. why is that? (5 Replies)
Discussion started by: arex876
5 Replies

7. Shell Programming and Scripting

where does variable export to?

Hi, Unix Gurus, I have a problem need help. I have a script to generate environment variable code same as following: oracle_sid=abcd export oracle_sid when I execute this code with command ./script_nane it succeeded. when I try to find it with env command or echo $oracle_sid, it does not show... (5 Replies)
Discussion started by: ken002
5 Replies

8. Shell Programming and Scripting

export variable not working after su

I have a requirement to change user inside a shell script and execute group of commands. I have done it many times earlier but never came across the issue with exporting variables. Strangely if a var is exported afetr su, it is not working where as if it is does outside su, it works. Another issue... (8 Replies)
Discussion started by: sasiharitha
8 Replies

9. Shell Programming and Scripting

Can't export variable

I am relatively new to exporting variables, and I just can't seem to make this count work. What I have is the following: TOTAL=$($IMAGELIST -backupid $IM -U |gawk '{print $5}' |tail -1)|gawk '{print $6}' RESTORED=$($BPDBJOBS -most_columns -jobid $JOBS |cut -f15 -d,) |gawk '{print $6}' export... (7 Replies)
Discussion started by: newbie2010
7 Replies

10. UNIX for Advanced & Expert Users

Need help export variable

Hi, Please find my code below. ps -xef | grep 14766 | awk 'BEGIN{X="java_home=";X="weblogic_home="} {for(i=1;i<=NF;i++){if($i ~ /-Dplatform\.home|java$/){split($i,P,"=");s=P?P:$i;print X""s}}}' echo "java_home="$java_home echo "weblogic_home="$weblogic_home Output: Why does... (3 Replies)
Discussion started by: mohtashims
3 Replies
LCDproc(3pm)						User Contributed Perl Documentation					      LCDproc(3pm)

NAME
IO::LCDproc - Perl extension to connect to an LCDproc ready display. SYNOPSIS
use IO::LCDproc; my $client = IO::LCDproc::Client->new(name => "MYNAME"); my $screen = IO::LCDproc::Screen->new(name => "screen"); my $title = IO::LCDproc::Widget->new( name => "date", type => "title" ); my $first = IO::LCDproc::Widget->new( name => "first", align => "center", xPos => 1, yPos => 2 ); my $second = IO::LCDproc::Widget->new( name => "second", align => "center", xPos => 1, yPos => 3 ); my $third = IO::LCDproc::Widget->new( name => "third", xPos => 1, yPos => 4 ); $client->add( $screen ); $screen->add( $title, $first, $second, $third ); $client->connect() or die "cannot connect: $!"; $client->initialize(); $title->set( data => "This is the title" ); $first->set( data => "First Line" ); $second->set( data => "Second line" ); $third->set( data => "Third Line" ); $client->flushAnswers(); DESCRIPTION
Follow the example above. Pretty straight forward. You create a client, assign a screen, add widgets, and then set the widgets. IO::LCDproc::Client It is the back engine of the module. It generates the connection to a ready listening server. METHODS new( name => 'Client_Name' [, host => $MYHOSTNAME] [, port => $MYPORTNUMBER] ) Constructor. Takes the following possible arguments (arguments must be given in key => value form): host, port, and name. name is required. add( SCREENREF ) Adds the screens that will be attached to this client. connect() Establishes connection to LCDproc server (LCDd). initialize() Initializes client, screen and all the widgets with the server. answer() Reads an answer from the server flushAnswers() Flushes all answers from the server (should be called regulary if you don't need the answers) IO::LCDproc::Screen METHODS new( name => 'MYNAME') Constructor. Allowed options: heartbeat => 1 or 0. add( @WIDGETS ) Adds the given widgets to this screen. set_prio( $prio ) Sets the screen priority with $prio one of hidden The screen will never be visible background The screen is only visible when no normal info screens exists info normal info screen, default priority foreground an active client alert The screen has an important message for the user. input The client is doing interactive input. IO::LCDproc::Widget METHODS new( name => 'MYNAME' ) Constructor. Allowed arguments: align (left, center, rigth), type (string, title, vbar, hbar, ...), xPos, yPos, data set() Sets the widget to the spec'd args. They may be given on the function call or the may be pre specified. xPos, yPos, data save() Saves current data to be user later. restore() Restore previously saved data. (Implicitly calls set) SEE ALSO
LCDd AUTHOR
Juan C. Muller, <jcmuller@gmail.com> COPYRIGHT AND LICENSE
Copyright 2005 by Juan C. Muller This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-04-15 LCDproc(3pm)
All times are GMT -4. The time now is 01:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy