I have a very simple script (created as a test) and the contents are
I want it to run in the background. I tried
and it doesn't work. I'm getting a "command not found" error.
Any ideas on how to run scripts/commands in the background?
Thanks!
Code:
#!/bin/sh
echo "test me" >> testme.txt
I want it to run in the background. I tried
Code:
#. /home/user-here/test.sh
Any ideas on how to run scripts/commands in the background?
Thanks!
