autorep command cut longer jobnames. Anybody into autosys / autorep?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting autorep command cut longer jobnames. Anybody into autosys / autorep?
Prev   Next
# 1  
Old 04-04-2006
Data autorep command cut longer jobnames. Anybody into autosys / autorep?

Hi there,

my problem is, that i need to get all jobs with status from a autosys instance.

If I use

autorep -J ALL -d >joblist.txt

longer Jobnames will be cut and the end will be replaced by 3 points like this

"ThisIsALongerJobNameAnd..."

If i try a single job query like

autorep -J ThisIsALongerJobNameAndINeedHimComplet -d

the jobname in the output is ok.

Also when I do a

autorep -J ALL -q >list.txt

I get all jobs, without cut, but without detailed status to..




I can't do a loop to query job after job because this need 10-20 minutes for all jobs and i will miss job status between that.

I play with the parameter -L but no difference to see.


so my finaly question is:

did anybody know a solution, how to get all jobs with status in one way without cutted details in the output Smilie ? (or how to speed up the thing)

Regards

drmaniac.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command to check only Autosys running jobs with autorep like command

Hi, Is there any specific command to use to check only say Running jobs via autorep or similar command for Autosys? (0 Replies)
Discussion started by: sidnow
0 Replies

2. Shell Programming and Scripting

Autorep not found problem

Hi All, I am using a putty session to login a server in which autosys is installed. we get the GUI by entering . /opt/CA/UnicenterAutoSysJM/autouser/autosys.ksh.server and then jobscape. when i tried autorep -j jobname it gives me autorep not found. Please help me with this. (1 Reply)
Discussion started by: mahesh300182
1 Replies

3. Shell Programming and Scripting

Problem with running the "autorep" command via crontab

Hi, The user "MadeInGermany" tried to help on the below post by saying "This has been asked before; see the links below. Get your current LD_LIBRARY_PATH and redefine that in your ksh script! " Thanks for the help. but this did not help. And my post got locked. I can't reply on my previous... (5 Replies)
Discussion started by: girish1428
5 Replies

4. Shell Programming and Scripting

Autorep command does not work from crontab !

Hi, I have written a ksh script and I'ma using the following command in it: autorep -j %abcd% | grep RU | grep BOX1 The script works fine when executed manualy on the command prompt. But does not work when scheduled in crontab. I could see the following in the crontab log: ... (1 Reply)
Discussion started by: girish1428
1 Replies

5. Shell Programming and Scripting

Using awk with autosys autorep

Hi, How to get correct field/column from autosys autorep command. I'm using GNU/Linux I'm trying to get the difference of last end and last start and the status (ST). In awk, i get the following excluding the heading part $1 - jobname $2 - Last Start date $3 - Last Start time $4 - Last... (1 Reply)
Discussion started by: bobbygsk
1 Replies

6. Shell Programming and Scripting

autorep command in the script

I have created UNIX script for getting information for the autosys jobs using autorep command. Job_name=temp_job1 echo $Job_name autorep -j $job_name -l0 After running the script I am getting the below error Error while loading shared libraries: libautoeac_api.so: cannot share object... (1 Reply)
Discussion started by: onesuri
1 Replies

7. UNIX for Advanced & Expert Users

autosys command(autorep) from command prompt

Hi, I am using AUTOSYS GUI based tool. But I want to get the job status from the UNIX command prompt. 1. I want to execute only autorep command in the UNIX command prompt. If need to execute this command what are the settings need to do that. 2. Is it possible for executing this... (5 Replies)
Discussion started by: onesuri
5 Replies

8. Red Hat

From where Machine name is taken in autorep report

Hi, When i tried to run a job on autosys which has to run a command on sys1 but its giving some other Machine name (sys56) , attempts ten times and fails. I would like to know from where this Machine column of autorep command gets input so that i can change to correct Host Machine (sys1) and... (4 Replies)
Discussion started by: Ishakarthi
4 Replies

9. Shell Programming and Scripting

autorep command in autosys

hi, i have autosys installed on unix. i use "autorep -j t8i%" command to see the scheduled jobs. now i have changed some of the jobs and saved them too. i gave the command jil< filename.jil to again insert the jobs. but my problem is what is the command to run all the jobs again so that i... (8 Replies)
Discussion started by: tejasingaraju17
8 Replies

10. Shell Programming and Scripting

autorep command to get autosys command

Hi, how can i use unix shell command to get the autosys commands for a set of given jobs? autorep -J EMP% -w returns all autosys jobnames starting with EMP and runtimes However, i also want to see the autosys 'command' corresponding to the above jobs. I don't want to sql query the... (1 Reply)
Discussion started by: ysrinu
1 Replies
Login or Register to Ask a Question
QKeyEvent(3qt)															    QKeyEvent(3qt)

NAME
QKeyEvent - Describes a key event SYNOPSIS
#include <qevent.h> Inherits QEvent. Public Members QKeyEvent ( Type type, int key, int ascii, int state, const QString & text = QString::null, bool autorep = FALSE, ushort count = 1 ) int key () const int ascii () const ButtonState state () const ButtonState stateAfter () const bool isAccepted () const QString text () const bool isAutoRepeat () const int count () const void accept () void ignore () DESCRIPTION
The QKeyEvent class contains describes a key event. Key events occur when a key is pressed or released when a widget has keyboard input focus. A key event contains a special accept flag that indicates whether the receiver wants the key event. You should call QKeyEvent::ignore() if the key press or release event is not handled by your widget. A key event is propagated up the parent widget chain until a widget accepts it with QKeyEvent::accept() or an event filter consumes it. Key events for multi media keys are ignored by default. You should call QKeyEvent::accept() if your widget handles those events. The QWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget. The event handlers QWidget::keyPressEvent() and QWidget::keyReleaseEvent() receive key events. See also QFocusEvent, QWidget::grabKeyboard(), and Event Classes. MEMBER FUNCTION DOCUMENTATION
QKeyEvent::QKeyEvent ( Type type, int key, int ascii, int state, const QString & text = QString::null, bool autorep = FALSE, ushort count = 1 ) Constructs a key event object. The type parameter must be QEvent::KeyPress or QEvent::KeyRelease. If key is 0 the event is not a result of a known key (e.g. it may be the result of a compose sequence or keyboard macro). ascii is the ASCII code of the key that was pressed or released. state holds the keyboard modifiers. text is the Unicode text that the key generated. If autorep is TRUE, isAutoRepeat() will be TRUE. count is the number of single keys. The accept flag is set to TRUE. void QKeyEvent::accept () Sets the accept flag of the key event object. Setting the accept parameter indicates that the receiver of the event wants the key event. Unwanted key events are sent to the parent widget. The accept flag is set by default. See also ignore(). int QKeyEvent::ascii () const Returns the ASCII code of the key that was pressed or released. We recommend using text() instead. See also text(). Example: picture/picture.cpp. int QKeyEvent::count () const Returns the number of single keys for this event. If text() is not empty, this is simply the length of the string. See also QWidget::setKeyCompression(). void QKeyEvent::ignore () Clears the accept flag parameter of the key event object. Clearing the accept parameter indicates that the event receiver does not want the key event. Unwanted key events are sent to the parent widget. The accept flag is set by default. See also accept(). bool QKeyEvent::isAccepted () const Returns TRUE if the receiver of the event wants to keep the key; otherwise returns FALSE bool QKeyEvent::isAutoRepeat () const Returns TRUE if this event comes from an auto-repeating key and FALSE if it comes from an initial key press. Note that if the event is a multiple-key compressed event that is partly due to auto-repeat, this function could return either TRUE or FALSE indeterminately. int QKeyEvent::key () const Returns the code of the key that was pressed or released. See Qt::Key for the list of keyboard codes. These codes are independent of the underlying window system. A value of either 0 or Key_unknown means that the event is not the result of a known key (e.g. it may be the result of a compose sequence or a keyboard macro, or due to key event compression). See also QWidget::setKeyCompression(). Example: fileiconview/qfileiconview.cpp. ButtonState QKeyEvent::state () const Returns the keyboard modifier flags that existed immediately before the event occurred. The returned value is ShiftButton, ControlButton, AltButton and MetaButton OR'ed together. See also stateAfter(). Example: fileiconview/qfileiconview.cpp. ButtonState QKeyEvent::stateAfter () const Returns the keyboard modifier flags that existed immediately after the event occurred. Warning: This function cannot be trusted. See also state(). QString QKeyEvent::text () const Returns the Unicode text that this key generated. The text returned migth be empty, which is the case when pressing or releasing modifying keys as Shift, Control, Alt and Meta. In these cases key() will contain a valid value. See also QWidget::setKeyCompression(). SEE ALSO
http://doc.trolltech.com/qkeyevent.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qkeyevent.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QKeyEvent(3qt)