Sponsored Content
Full Discussion: Cancel QCompile
Top Forums UNIX for Dummies Questions & Answers Cancel QCompile Post 67942 by itldp on Tuesday 29th of March 2005 03:10:00 PM
Old 03-29-2005
Cancel QCompile

I need help, please!!!!!!!!

I have accidentally selected to compile all my programs, which will probably take forever!! How can I cancel the compiling of the programs. I see in qstatus the huge list of programs waiting to be compiled.

Thanks! Smilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to cancel all printjobs at once?

Hi unix-friends, I've got an RS6000 with Unix 4.3 as OS. I'm writing a script that i want to use for cancelling all print jobs at once. Does anyone have any good idea's, hints, or tips? Hope to hear from you, Erik (3 Replies)
Discussion started by: Erik Rooijmans
3 Replies

2. UNIX for Advanced & Expert Users

cancel the massage

Hi all In Aix system Someone know i want to cancel the massage. if some user print something and user root deleting the job i got brodcast message " message from queueing system job number XXX has been deleteing from queue. <EOT> " I use the cancel command (1 Reply)
Discussion started by: goldfelda
1 Replies

3. Post Here to Contact Site Administrators and Moderators

cancel account

id like to cancel my account please. thanks (5 Replies)
Discussion started by: samb057
5 Replies

4. Post Here to Contact Site Administrators and Moderators

Cancel Account

I accidentally typed a wrong user name... pls delete my account so that i can create a new one.. Thanks (4 Replies)
Discussion started by: Pat_Martin
4 Replies

5. UNIX for Dummies Questions & Answers

can't cancel nohup job

Yesterday I started a nohup job called assoc.sh. It has not finished running, but I have realised a problem with my script, so wish to cancel it, modify and restart it. However, I cannot find the PID, so can't cancel it. I have searched the ps list and nothing resembles my job - how can I cancel... (13 Replies)
Discussion started by: polly_falconer
13 Replies

6. Shell Programming and Scripting

Cancel down 2 integers

Wonderful evening to all of you! My problem has to possible starting points. Well, not really, but getting to either one is no problem at all. So i got either a string in the format of "1920x1080" or simply the integers X = 1920 and Y = 1080. When I am done, I would like to have an output... (5 Replies)
Discussion started by: jakunar
5 Replies

7. Shell Programming and Scripting

Howto cancel I/O redirection ?

Hi on AIX systems (6.x and 7.x) I have ksh scripts redirecting I/O, and running another script script000.ksh ie : # my script ... >${LOG} >${LOGCTRL} exec >>${LOG} 2>>${LOG} . ${PROJECT}/.../script000.ksh # hereafter, restore default I/O ... Is it possible at the end of the... (2 Replies)
Discussion started by: Fundix
2 Replies

8. UNIX for Dummies Questions & Answers

Cannot cancel a print

Hi Everyone, I am trying to cancel a print. I am logged on as the user of the print and when I use the command 'cancel print_job' I get the message 'print_job: not authorized' I have cancelled other prints in the queue, but this particular job in the queue cannot delete. I even logged on as... (5 Replies)
Discussion started by: Scarlet
5 Replies

9. Shell Programming and Scripting

How to cancel wget download after 1%?

I am running a video download test and automating that. I wanna know how to stop a wget download session when downloads reached 1% Thanks in advance, Tamil (11 Replies)
Discussion started by: tamil.pamaran
11 Replies

10. UNIX for Dummies Questions & Answers

Posix. Any way to cancel tcdrain() ?

While transmitting RS232 data I use tcdrain() to wait for the data to be sent before putting more data into the txbuffer. write(hPort, txBytes, txBytes.count); tcdrain(); If the remote device disconnects then tcdrain never returns. I'm doing it in a thread so the UI is still... (1 Reply)
Discussion started by: IanES
1 Replies
Net::LDAP::Extension::Cancel(3) 			User Contributed Perl Documentation			   Net::LDAP::Extension::Cancel(3)

NAME
Net::LDAP::Extension::Cancel - LDAP Cancel Operation SYNOPSIS
use Net::LDAP; use Net::LDAP::Constant qw(LDAP_SUCCESS LDAP_CANCELED) use Net::LDAP::Extension::Cancel; $ldap = Net::LDAP->new( 'ldap.mydomain.eg' ); $ldap->bind('cn=Joe User,cn=People,dc=example,dc=com', password => 'secret'); $search = $ldap->search( base => 'c=US', filter => '(&(sn=Barr) (o=Texas Instruments))', callback => &process_entry, # Call this sub for each entry ); $mesg = $ldap->cancel($search); die "error :", $mesg->code(), ": ", $mesg->error() if ($mesg->code() != LDAP_CANCELED && mesg->code() != LDAP_SUCCESS); DESCRIPTION
"Net::LDAP::Extension::Cancel" implements the "Cancel" extended LDAPv3 operation as described in RFC 3909. The "Cancel" extended operation is very similar to the "Abandon" standard operation, and has the same call signature. Unlike the "Abandon" operation, it has a response which provides an indication of its outcome. It implements no object by itself but extends the Net::LDAP object by another method: METHODS
cancel ( OPERATION, OPTIONS ) Cancel an outstanding operation. "OPERATION" may be a number or an object which is a sub-class of Net::LDAP::Message, returned from a previous method call. OPTIONS is a list of key/value pairs. The following keys are recognized: control => CONTROL control => [ CONTROL, .. ] Control(s) to be passed to the operation. SEE ALSO
Net::LDAP, Net::LDAP::Extension AUTHOR
Peter Marschall <peter@adpm.de>. Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org> COPYRIGHT
Copyright (c) 2011 Peter Marschall. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2013-06-07 Net::LDAP::Extension::Cancel(3)
All times are GMT -4. The time now is 10:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy