Sponsored Content
Full Discussion: Testing for exit status
Top Forums UNIX for Dummies Questions & Answers Testing for exit status Post 15658 by sskb on Monday 18th of February 2002 07:13:15 AM
Old 02-18-2002
Hi,
I am using CSH and trying to get a similar thing as follows.
I am not getting where I go wrong. could anyone please guide me?

#!/usr/bin/csh
set a = `grep "primary \# secondary" ar128.log`
if($a == 0) then
sed 's/primary \# secondary/secondary \#primary \#secondary/' ar128.log > ar128.log.ext
else
sed 's/secondary \#primary \#secondary/primary \# secondary/' ar128.log > ar128.log.ext
endif


i get no error even...

thanks
sskb
sskb
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

exit status

i downloaded a text file from metalab.unc.edu called sh.txt and in this reference manual it refers to shell scripting exit status .. at the end of one of the examples that author gave an exit status of 127.. to what does a 127 exit status refer too and what is its purpose in the code. moxxx68 (1 Reply)
Discussion started by: moxxx68
1 Replies

2. Shell Programming and Scripting

Problem with exit status

Hi, Consider the output of the following commands: case1) ------- # ifconfig -a | grep "UP" | grep uplink0:1 # echo $? Output is: 0 case2 ------ # ifconfig -a | grep "UP" | grep uplink0:1; echo $? Output is: 1 In case2 we got the exit code as 1, which is the actual exit code.... (1 Reply)
Discussion started by: diganta
1 Replies

3. Shell Programming and Scripting

Checking Exit Status

I hope one of you smart people out there can help me with what seems like a real simple questing but I can't quite figure out. In a script I am doing a cmp on two files. I am trying to check the exit status with an if statement but can't seem to figure out the syntax. If the exit status is 1 I... (4 Replies)
Discussion started by: PrimeRibAndADew
4 Replies

4. Shell Programming and Scripting

exit status for isql

I'm trying to write a script that will update a table in sysbase. If it's failed then I want to rerun it one more time before exiting the script (fail due to bad value such as trying to put a string into datetime field or bad connection to the database) Well my code below will always return... (2 Replies)
Discussion started by: sirrtuan
2 Replies

5. Shell Programming and Scripting

How to get the exit status

Hi all, I'm running a program which return 1 upon success. But when encounters problem shell return 's '1' . How to differentiate between them the shell return value and script return value. Ex. function fn return '1' if executed successfully and '0' if failed. But when if shell encounters... (1 Reply)
Discussion started by: yhacks
1 Replies

6. Shell Programming and Scripting

Exit status

I'm preparing for exam and one of exams is to write own test command... I wonder if in unix is a command which just returns exit code you specify.. I know I can easily write a function like this: exStatus() { return $1 } -> my question is rather theoretical thank you! (9 Replies)
Discussion started by: MartyIX
9 Replies

7. UNIX for Dummies Questions & Answers

$? = Exit status variable

hi, exit status variable $?, returns some digits. 0 ---> succes. 1..126 Failure (the program itself will decide what the numbers mean) 127 Command not found 128..254 The program did not exit normally. (E.g., it crashed, or received a signal) 255 Invalid exit code well, if $?... (4 Replies)
Discussion started by: dummydba
4 Replies

8. Shell Programming and Scripting

Exit status of grep

I am trying to get the exit status of grep and test a condition with it, But it does not seem to be working as expected since i am doing something wrong apparently as per grep help Exit status is 0 if match, 1 if no match, and 2 if trouble. My problem is something like this templine - a... (7 Replies)
Discussion started by: prasbala
7 Replies

9. Shell Programming and Scripting

Exit Status

I have a shell script (#!/bin/sh) that interacts with Appworx and Banner Admin. In my script I want to check the exit status of awrun before continuing. awrun can run for 10 seconds or it can run for over a minute. So my question is, will it go through my if statement before awrun may even be... (2 Replies)
Discussion started by: smkremer
2 Replies

10. Shell Programming and Scripting

Want to get the exit status

Hi All, I am trying to create a zip file with all the txt files(these are in large number) in the current directory. I am able to do this operation sucessfully. After this i want to get the status of the tar command executed and do accordingly. When i am trying with the below code, the status... (3 Replies)
Discussion started by: paddu
3 Replies
GLSECONDARYCOLOR(3G)						   OpenGL Manual					      GLSECONDARYCOLOR(3G)

NAME
glSecondaryColor - set the current secondary color C SPECIFICATION
void glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue); void glSecondaryColor3s(GLshort red, GLshort green, GLshort blue); void glSecondaryColor3i(GLint red, GLint green, GLint blue); void glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue); void glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue); void glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue); void glSecondaryColor3us(GLushort red, GLushort green, GLushort blue); void glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue); PARAMETERS
red, green, blue Specify new red, green, and blue values for the current secondary color. C SPECIFICATION
void glSecondaryColor3bv(const GLbyte * v); void glSecondaryColor3sv(const GLshort * v); void glSecondaryColor3iv(const GLint * v); void glSecondaryColor3fv(const GLfloat * v); void glSecondaryColor3dv(const GLdouble * v); void glSecondaryColor3ubv(const GLubyte * v); void glSecondaryColor3usv(const GLushort * v); void glSecondaryColor3uiv(const GLuint * v); PARAMETERS
v Specifies a pointer to an array that contains red, green, blue. DESCRIPTION
The GL stores both a primary four-valued RGBA color and a secondary four-valued RGBA color (where alpha is always set to 0.0) that is associated with every vertex. The secondary color is interpolated and applied to each fragment during rasterization when GL_COLOR_SUM is enabled. When lighting is enabled, and GL_SEPARATE_SPECULAR_COLOR is specified, the value of the secondary color is assigned the value computed from the specular term of the lighting computation. Both the primary and secondary current colors are applied to each fragment, regardless of the state of GL_COLOR_SUM, under such conditions. When GL_SEPARATE_SPECULAR_COLOR is specified, the value returned from querying the current secondary color is undefined. glSecondaryColor3b, glSecondaryColor3s, and glSecondaryColor3i take three signed byte, short, or long integers as arguments. When v is appended to the name, the color commands can take a pointer to an array of such values. Color values are stored in floating-point format, with unspecified mantissa and exponent sizes. Unsigned integer color components, when specified, are linearly mapped to floating-point values such that the largest representable value maps to 1.0 (full intensity), and 0 maps to 0.0 (zero intensity). Signed integer color components, when specified, are linearly mapped to floating-point values such that the most positive representable value maps to 1.0, and the most negative representable value maps to -1.0. (Note that this mapping does not convert 0 precisely to 0.0). Floating-point values are mapped directly. Neither floating-point nor signed integer values are clamped to the range 0 1 before the current color is updated. However, color components are clamped to this range before they are interpolated or written into a color buffer. NOTES
glSecondaryColor is available only if the GL version is 1.4 or greater. The initial value for the secondary color is (0, 0, 0, 0). The secondary color can be updated at any time. In particular, glSecondaryColor can be called between a call to glBegin() and the corresponding call to glEnd(). ASSOCIATED GETS
glGet() with argument GL_CURRENT_SECONDARY_COLOR glGet() with argument GL_RGBA_MODE glIsEnabled() with argument GL_COLOR_SUM SEE ALSO
glColor(), glIndex(), glIsEnabled(), glLightModel(), glSecondaryColorPointer 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 GLSECONDARYCOLOR(3G)
All times are GMT -4. The time now is 10:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy