![]() |
|
|
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 |
| usage of same variable in multiple scripts | risshanth | UNIX for Dummies Questions & Answers | 1 | 07-01-2008 01:03 PM |
| How to store query multiple result in shell script variable(Array) | div_Neev | Shell Programming and Scripting | 4 | 11-06-2007 08:10 PM |
| Manipulating data in variable | ajcannon | Shell Programming and Scripting | 6 | 08-01-2007 05:42 PM |
| How to make the same change in multiple shell scripts? | rdakhan | Shell Programming and Scripting | 4 | 05-29-2007 08:21 PM |
| Multiple platform scripts | *ptr | Shell Programming and Scripting | 8 | 03-14-2007 03:52 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Manipulating a variable across multiple shell scripts
I have a shell script similar to:
#!/bin/sh a=1 source a1.sh -- Modifies a source a2.sh -- Modifies a echo "After execution, value of a is $a" What i need is a1.sh script modify the same variable a and same with a2.sh. Now the echo "After execution, value of a is $a" should print the value of a after manipulation in the scripts, and not 1 (value in calling script). Is it possible? |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|