How would I go about executing a process and then continuing down the script. For example.
proc step_one{} {
copy file C:\file.txt D:\file.txt
}
proc step_two{} {
execute new command
}
step_one (Now I want this to be going on in the background...and move on down the script)
step_two
then I would want to wait for step_one to finish then loop starting at step_one.
Is this possible and if so what would this be called. having a hard time looking up information since I am not sure what I would call this.
thanks,
proc step_one{} {
copy file C:\file.txt D:\file.txt
}
proc step_two{} {
execute new command
}
step_one (Now I want this to be going on in the background...and move on down the script)
step_two
then I would want to wait for step_one to finish then loop starting at step_one.
Is this possible and if so what would this be called. having a hard time looking up information since I am not sure what I would call this.
thanks,