[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Condor_q on Win XP question
- Date: Tue, 27 Jul 2004 15:55:22 -0500
- From: Colin Stolley <stolley@xxxxxxxxxxx>
- Subject: Re: [Condor-users] Condor_q on Win XP question
A good example is
'condor_q -constraint jobstatus==1' returns those idle jobs
'condor_q -constraint MyType=="Job"' returns nothing even though
the jobs (even those from previous example) have a ClassAd of MyType =
"Job"
That's a funny thing about cmd.exe and its handling of quotation marks.
I find something like this works ok though:
condor_status -constraint "OpSys == \"WINNT50\""
(Note the backslashes around the string value)
Colin