I have a script that uses sh shell. I get an error in the line that uses the source command. It seems source is not included in my
sh
source
The source builtin is a bashism. Write this simply as . instead.
.
e.g.
. $FILE # OR you may need to use a relative path (such as in an `npm` script): . ./$FILE
https://wiki.ubuntu.com/DashAsBinSh#source