How to import a variable Used in Another Korn Shell Script?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to import a variable Used in Another Korn Shell Script?
# 1  
Old 08-22-2013
How to import a variable Used in Another Korn Shell Script?

Hi

I am using two shell scripts which are running on the system simultaneously. And in one of the script i am exporting an Integer Variable.

Now i want to use the variable in another script. But i cannot run the first script in the second as the first script has many other functions which cannot be run by the second script. I am mentioning this because i have see many solutions for this type of problem where running of the script is suggested.


First Script
Code:
JS_ST=Nowtime=$(date +"%k%M")
export JS_ST

Second Script
Code:
import JS_ST (As it is used in Higher Level programming Languages )

Can Anybody Help on the Above?

Last edited by vbe; 08-22-2013 at 11:21 AM..
# 2  
Old 08-22-2013
Not very clear...

What is stopping you to add those two lines at the beginning of your second script? (are you using other variables/function found elsewhere? in first script?)
# 3  
Old 08-22-2013
A simple solution would be to write the content of the variable to a file in the exporting script and read it in the importing script.
Named pipes might also be a possible solution.
# 4  
Old 08-23-2013
Quote:
Originally Posted by vbe
Not very clear...

What is stopping you to add those two lines at the beginning of your second script? (are you using other variables/function found elsewhere? in first script?)
Well i have tried using "export" from the first script and "import" into the another but the values do not come


In the First Script

Code:
export TZ=EST5EDT

JS_ST=$(date +"%k%M")
export JS_ST
echo "The Launch Time now is $JS_ST"


And in the second script

Code:
export TZ=EST5EDT
import JS_ST
echo "The Job Stream Launch Time is $JS_ST"

But the Value JS_ST is not coming

---------- Post updated 08-23-13 at 04:26 AM ---------- Previous update was 08-22-13 at 09:34 AM ----------

So Finally i had to export the variable to a File and then i read it from the File.

Quite surprised, Shell scripting doesnt have export/import function.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Korn Shell help - Using parameter to create variable names

I'm using korn shell and I am wondering if it's possible to use a parameter passed into a function to build a variable name in a configuration file. I have the function in one source file, I'd like to have a global configuration file instead of hardcoding logins to each script. So I have a... (7 Replies)
Discussion started by: mrevello
7 Replies

2. Shell Programming and Scripting

korn shell: check the content of a string of a variable

hello, i have a variable which should have following content : var="value1" or var="value2" or var="value2:*" # example: value2:22 how can i check : - if the content is ok (value1 / value2* ) - the two options of "value2" when content is example "value2:22" , i want to split... (3 Replies)
Discussion started by: bora99
3 Replies

3. Programming

How to refer to variable (korn shell)?

Hi I have the following block of code in korn shell and don't now how to refer to variable `print variable1.$dvd` ? --- integer dvd=4 integer number=0 while (( dvd!=0 )) do print "Iteracja numer : $dvd" print "$_" #it refers to $dvd var but want to refer... (3 Replies)
Discussion started by: presul
3 Replies

4. Shell Programming and Scripting

Shell script for an db import process

Hello, I would like a to have an script that would accept variables for "foruser" and "touser" during an db import.. I am pasting an sample script below... The "and" in the below script needs to changed..to a correct syntax for i in `cat /tmp/from` and for j in `cat /tmp/to` do {... (2 Replies)
Discussion started by: jjoy
2 Replies

5. Shell Programming and Scripting

Korn Shell Script

I have to solve some exercises in Korn Shell, but i'm having some problems. For example: Write a korn shell script with an alfanumeric string as argument. The script lists the file's names in the current directory that contain the given string as substring and that can be read and written. I... (3 Replies)
Discussion started by: burm
3 Replies

6. Shell Programming and Scripting

Setting variable for query using iSql / Korn Shell

Hi All- First time using iSql. I have 4 query files - some have more than 1 line of sql statements After a bit of research it appears I can just use the -i command and specify the input file. Questions: Does it matter that there are multiple queries in each file? Do I need to have... (3 Replies)
Discussion started by: Cailet
3 Replies

7. Shell Programming and Scripting

Korn Shell Variable values difference

I am using two shell scripts a.ksh and b.ksh a.ksh 1. Sets the value +++++++++++++++++ export USER1=abcd1 export PASSWORD=xyz +++++++++++++++++ b.ksh 2. Second scripts calls sctipt a.ksh and uses the values set in a.ksh and pass to an executable demo... (2 Replies)
Discussion started by: kunalseth
2 Replies

8. Shell Programming and Scripting

compound variable in korn shell

in a text " Korn Shell Unix programming Manual 3° Edition" i have found this sintax to declare a compoud variable: variable=( fild1 fild1 ) but this sintax in ksh and sh (HP-UNIX) not work... why?? exist another solution for this type of variable ??? (5 Replies)
Discussion started by: ZINGARO
5 Replies

9. Shell Programming and Scripting

compound variable in korn shell

in a text " Korn Shell Unix programming Manual 3° Edition" i have found this sintax to declare a compoud variable: variable=( fild1 (0 Replies)
Discussion started by: ZINGARO
0 Replies

10. Shell Programming and Scripting

Finding Occurence of comma in a Variable ( KORN Shell)

All I want to find the occurence of comma in a variable in KORN shell. For example : var = test,test2,test3 .... finding occurence of comma in this variable. Result = 3 now. Please help me to write the code. Thanks in advance. Regards Deepak (2 Replies)
Discussion started by: DeepakXavier
2 Replies
Login or Register to Ask a Question