Quote:
|
Originally Posted by mopsos
Hi,
I have a problem with the execution of a script in a script.
I want recover a variable in a script and test this in a other .
For exemple :
A script : sc1.sh
A script : sc2.sh
Code:
#!/bin/sh
sh /folder/sc1.sh
if [ var -eq 3 ]
echo "goods"
fi
But this is bad.
|
I'd do it like this:
sc1.sh:
sc2.sh:
Code:
#!/bin/sh
. /folder/sc1.sh
if [ $var -eq 3 ]
echo "goods"
fi