Scripting noob here. Probably a real easy answer to this...
my script does something like....
...
while loop
do
some stuffA
some stuffB
cp my.file.xx /home/bill/stuff/file.xx
some stuffC
some stuffD
done
...
Lines in my script are executed one line at a time right? Is it possible to execute
the cp command above (copying a big file) and continue with the script without the script
waiting for the cp command to finish??
Thanks for any help.
my script does something like....
...
while loop
do
some stuffA
some stuffB
cp my.file.xx /home/bill/stuff/file.xx
some stuffC
some stuffD
done
...
Lines in my script are executed one line at a time right? Is it possible to execute
the cp command above (copying a big file) and continue with the script without the script
waiting for the cp command to finish??
Thanks for any help.