[quote='css' pid='84291' dateline='1265094364']
How do you start the screen? Doesn't the screen window exit automatically if you've launched the program with a one-liner with the screen command itself.
Try first starting the screen command like this:
Then inside the screen write:
I started my screen with
And then i resumed my screen and used
Will try your version today. Perhaps there will be a bug or issue with my way of doing it. Should i have the abolute path in my screen session so it can find the file?
How do you start the screen? Doesn't the screen window exit automatically if you've launched the program with a one-liner with the screen command itself.
Try first starting the screen command like this:
Code:
screen -S ratetables
Then inside the screen write:
Code:
while [ 1 ]; do ./ratetables.pl; sleep 5; done
I started my screen with
Code:
screen -A -m -d -S rates ./ratetables.pl
And then i resumed my screen and used
Code:
[code]while [ 1 ]; do ./ratetables.pl; sleep 5; done
Will try your version today. Perhaps there will be a bug or issue with my way of doing it. Should i have the abolute path in my screen session so it can find the file?