include in script

Hello,
I have a script and a second file that contains all parameters needed for the script.

How can I include this file in the script ?

I tried source but I have a "no such file or directory" error.

:slight_smile:

You can start the script with the variables in your main script as follow:

. ./script_with_variables

assuming this script is in the current directory.

Regards