This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

qstat with windrop problem

Help for those learning Tcl or writing their own scripts.
Post Reply
m
modex
Voice
Posts: 3
Joined: Tue Dec 26, 2006 6:25 pm

qstat with windrop problem

Post by modex »

Basically im trying to get qstat.tcl to work on my windrop. ive edited the qstat tcl and i think its not liking how i input the path to qstat. below is what ive tried.

Code: Select all

set pathqstat "windrop\qstat"
ive also tried the full path to the dir eg c:\windrop\qstat - \windrop\qstat\ doesnt seem to work either. the script starts but when i try and query a server i get the error:

[16:22] Tcl error [pub:qstat]: couldn't create error file for command: no such file or directory

Ive searched all over trying to find a fix for this, and havnt found anything. any help is greatly appreciated. thanks in advance.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Try:
set pathqstat "./qstat"
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
m
modex
Voice
Posts: 3
Joined: Tue Dec 26, 2006 6:25 pm

Post by modex »

Alchera wrote:Try:
set pathqstat "./qstat"
thanks for the response but unfortunately that didn't work either :(
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

You have created the 'qstat' folder within the main folder?
windows/qstat
You have qstat.tcl in the 'scripts' folder?
source scripts/qstat.tcl
If so, then you should have no problems.

You'd probably have to try this method:
set pathqstat "../qstat"
or your original except using forward slash as you're running Windrop under a Cygwin environment (pseudo *nix).
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Post Reply