Subj : Re: fsxnet.nz To : Avon From : Charles Blackburn Date : Sat Oct 08 2022 03:06 pm Re: Re: fsxnet.nz By: Avon to apam on Sat Oct 08 2022 22:36:19 >> another .sh script? ap> hmm, someone else may be able to answer better because I'm not 100% sure.. ap> I *think* ap> . /path/to/anotherscript.sh ap> will include the script? thart will include the script at that particular point in the calling script, then it would execute "AS" the calling script. it's the same as doing "source ap> you should be able to just run it like any other binary, so long as the ap> file starts with #!/path/to/shell (probably #!/bin/bash) if you have #!/path/to/shell (usually #!/bin/bash) as the first or second line (if the first is the shellscape comment) and it is +x then it will execute as a regular command. for example... my /etc/rc.local #!/bin/bash /usr/local/bin/cpuguv.sh& # Set CPU to performance /usr/local/bin/rc.iptables& # Setup IPTables