more stuff to test

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2010-09-21 20:27:48 +02:00
parent dab5854428
commit bcf711d77c
3 changed files with 14 additions and 0 deletions

5
test/func_var1 Normal file
View File

@ -0,0 +1,5 @@
func1()
{
myvar="blu"
echo $myvar
}

5
test/func_var1var2 Normal file
View File

@ -0,0 +1,5 @@
. ./func_var1
. ./func_var2
func1
func2

4
test/func_var2 Normal file
View File

@ -0,0 +1,4 @@
func2()
{
echo $myvar
}