02-04-2011
going to need more info to help. Need to know what search_printer.sh has in it.
what eje_impPicking.sh has in it. What users is this running as? is the source oraenv in place and usable? can this user connect to the databases being passed DESA and PRO. has there been a password change that did not get put into oracle?
This will probably be a start point. Have to see from there.
10 More Discussions You Might Find Interesting
1. Solaris
Good morning,
I have a server with solaris 10 that I want to intall remote printers.
I started lpsched deamon without problems with command:
svcadm enable application/print/server
I want to install printers that are defined locally on print server, so:
lpadmin -p <device> -s <print... (2 Replies)
Discussion started by: bonovox
2 Replies
2. UNIX for Advanced & Expert Users
Hi,
I would like to get some specific fields from one long line.
My line looks like
CcnCDRFile0-8535123473201007170536_2010-07-20_17:06:02:,,9963387265,,,,,00720141432,,+0.310,+79.255,+78.945,,,,1492,,,,0,... (1 Reply)
Discussion started by: kkarthik_kaja
1 Replies
3. Shell Programming and Scripting
hi,
I'm searching for a perfect book to learn awk programming, i started with sed&awk book, but i think this book might be outdated as it is written way back in 97 and also it doesn't have many examples. So, I thought of getting some advice from the experts here. Pls suggest me some books.
... (1 Reply)
Discussion started by: dvah
1 Replies
4. Shell Programming and Scripting
I have a list of file names. However in some instances I might have a "-" at the beginning of the filename or an "=".
For example I might have something like this
set Lst = "file1 file2 file3 -file4 file5="
I want to pick up the ones having "-" at the beginning or "=" and store them in... (22 Replies)
Discussion started by: kristinu
22 Replies
5. Shell Programming and Scripting
for vgls in `lsvg`
do
lsvg $vgls | awk '/^VOLUME GROUP/ { printf "%s ", $3 } /PP SIZE/ { S=$6 }
/TOTAL PPs/ { printf "%d ", $6*S/1024 }
/FREE PPs/ { print $6*S/1024 }
'
done
This returns /TOTAL PPs/ and /FREE PPs/ fine, but not /PP SIZE/.
Please advise. (11 Replies)
Discussion started by: Daniel Gate
11 Replies
6. Solaris
Hi,
We are facing an issue while setting up printers in solaris 5.10 . We have Oracle EBS installed over it. We have configured the printer and when we try printing a page from EBS it is printing fine. But the problem arises when we print two copies of the page. The first page is printing fine... (5 Replies)
Discussion started by: Srinathkiru
5 Replies
7. Shell Programming and Scripting
Hi,
I have a file which contains values in this format.
abc
cde
fgh
ijk
lmn
opq
rst
uvw
The user will pass the required parameter from the command line.
My requirement is that script should pick the values passed by the user and the next value in the next line.
Like if the user... (10 Replies)
Discussion started by: arijitsaha
10 Replies
8. Programming
Hi
I trying to write a python script that executes a command to screen scrub results below
I will appreciate it very much if you can help me with a python script that can
pick the percentage USAGE in the second column based on the supplied queue number in the first column
Thanks in advance.
... (2 Replies)
Discussion started by: kaf3773
2 Replies
9. Shell Programming and Scripting
Hi
I have a scenario:
I have a directory say DIR1 (no sub directories) and have few files in that directory as given below:
app-cnd-imp-20150820.txt
app-cxyzm-imp-20150820.txt
app-petco-imp-20150820.txt
app-mobility-imp-20150820.txt
app-mobility-imp-20150821.txt... (7 Replies)
Discussion started by: Saanvi1
7 Replies
10. UNIX for Beginners Questions & Answers
#!/bin/bash
shuffle()
{
Deck=$(shuf -e {2,3,4,5,6,7,8,9,T,J,Q,K,A}{H,S,D,C})
}
PH=(6H 9S KC) # playerhand
CH=(JD 4D) # computerhand
AC=2S # activecard
shuffle
echo $Deck
I am unsure about how to proceed. I want to reshuffle a deck but without the cards in... (3 Replies)
Discussion started by: cogiz
3 Replies
LEARN ABOUT CENTOS
glupickmatrix
GLUPICKMATRIX(3G) OpenGL Manual GLUPICKMATRIX(3G)
NAME
gluPickMatrix - define a picking region
C SPECIFICATION
void gluPickMatrix(GLdouble x, GLdouble y, GLdouble delX, GLdouble delY, GLint * viewport);
PARAMETERS
x, y
Specify the center of a picking region in window coordinates.
delX, delY
Specify the width and height, respectively, of the picking region in window coordinates.
viewport
Specifies the current viewport (as from a glGetIntegerv() call).
DESCRIPTION
gluPickMatrix creates a projection matrix that can be used to restrict drawing to a small region of the viewport. This is typically useful
to determine what objects are being drawn near the cursor. Use gluPickMatrix to restrict drawing to a small region around the cursor. Then,
enter selection mode (with glRenderMode()) and rerender the scene. All primitives that would have been drawn near the cursor are identified
and stored in the selection buffer.
The matrix created by gluPickMatrix is multiplied by the current matrix just as if glMultMatrix() is called with the generated matrix. To
effectively use the generated pick matrix for picking, first call glLoadIdentity() to load an identity matrix onto the perspective matrix
stack. Then call gluPickMatrix, and, finally, call a command (such as gluPerspective()) to multiply the perspective matrix by the pick
matrix.
When using gluPickMatrix to pick NURBS, be careful to turn off the NURBS property GLU_AUTO_LOAD_MATRIX. If GLU_AUTO_LOAD_MATRIX is not
turned off, then any NURBS surface rendered is subdivided differently with the pick matrix than the way it was subdivided without the pick
matrix.
EXAMPLE
When rendering a scene as follows:
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(...);
glMatrixMode(GL_MODELVIEW);
/* Draw the scene */
a portion of the viewport can be selected as a pick region like this:
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPickMatrix(x, y, width, height, viewport);
gluPerspective(...);
glMatrixMode(GL_MODELVIEW);
/* Draw the scene */
SEE ALSO
gluPerspective(), glGet(), glLoadIdentity(), glMultMatrix(), glRenderMode()
COPYRIGHT
Copyright (C) 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see
http://oss.sgi.com/projects/FreeB/.
AUTHORS
opengl.org
opengl.org 06/10/2014 GLUPICKMATRIX(3G)