#!/bin/sh
. include/myscript example.com 80
#!/bin/sh
host=example.com port=80 . include/myscript
In Bash and Ksh, you can use . myscript arg1 arg2..
to
set $1
and $2
in the sourced script.
This is not the case in Dash, where any additional arguments are ignored, or in POSIX sh where the behavior is unspecified.
Instead, assign arguments to variables and rewrite the sourced script to read from them.
None.
ShellCheck is a static analysis tool for shell scripts. This page is part of its documentation.