7 lines
85 B
Bash
Executable file
7 lines
85 B
Bash
Executable file
#!/bin/bash
|
|
if [ $BASH_TREE_LANG = "ES" ]
|
|
then
|
|
./tree-ES.sh
|
|
else
|
|
./tree-EN.sh
|
|
fi
|