Sponsored Content
Operating Systems HP-UX "ps -o" Not valid: XPG4 Only. What does that mean? Post 302167744 by goldfish on Friday 15th of February 2008 11:35:46 AM
Old 02-15-2008
"ps -o" Not valid: XPG4 Only. What does that mean?

When I tried to specify columns with ps
Code:
ps -o"pid,stime"

I get the following error:
Code:
ps: illegal option -- o

The man page says that -o is XPG4 only. All the other options that also say "XPG4 only" don't work either. What is XPG4? is it a compiler option of some sort that must not be checked? or is there also going to be a XPG4 version of each program on the HP Unix box?

Thanks,
Gold Fish
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies

2. Shell Programming and Scripting

cat $como_file | awk /^~/'{print $1","$2","$3","$4}' | sed -e 's/~//g'

hi All, cat file_name | awk /^~/'{print $1","$2","$3","$4}' | sed -e 's/~//g' Can this be done by using sed or awk alone (4 Replies)
Discussion started by: harshakusam
4 Replies

3. AIX

"rmt0" is not a valid backing device - VIO

hello to all, i am trying to assing a tape drive to a virtual partition through VIO but i get the message "rmt0" is not a valid backing device. the oslevel of my VIO is AIX 6.1.3.0. when i run the command lsdev |grep rmt i get the following result: rmt0 Available 08-08-00-0,0 ... (6 Replies)
Discussion started by: omonoiatis9
6 Replies

4. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

5. Shell Programming and Scripting

Help with error "por: 0403-012 A test command parameter is not valid."

Hi, im asking for help with the next script: echo ^; then if then printf "\033 query1.sh: export TERM=vt100 export ORACLE_TERM=at386 export ORACLE_HOME=/home_oracle8i/app/oracle/product/8.1.7 export ORACLE_BASE=/home_oracle8i/app/oracle export... (8 Replies)
Discussion started by: blacksteel1988
8 Replies

6. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

7. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

8. AIX

Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all, i have had AIX 7.2 :/# /usr/IBMAHS/bin/apachectl -v Server version: Apache/2.4.12 (Unix) Server built: May 25 2015 04:58:27 :/#:/# /usr/IBMAHS/bin/apachectl -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_worker_module (static) ... (3 Replies)
Discussion started by: penchev
3 Replies
bessel(3)						     Library Functions Manual							 bessel(3)

NAME
bessel, j0, j1, jn, y0, y1, yn - Compute Bessel functions LIBRARY
Math Library (libm.a) SYNOPSIS
#include <math.h> double j0 (double x); float j0f (float x); long double j0l (long double x); double j1 (double x); float j1f (float x); long double j1l (long double x); double jn (int n, double x); float jnf (int n, float x); long double jnl (int n, long double x); double y0 (dou- ble x); float y0f (float x); long double y0l (long double x); double y1 (double x); float y1f (float x); long double y1l (long double x); double yn (int n, double x); float ynf (int n, float x); long double ynl (int n, long double x); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: j0(): XPG4 j1(): XPG4 jn(): XPG4 y0(): XPG4 y1(): XPG4 yn(): XPG4 Refer to the standards(5) reference page for more information about industry standards and associated tags. DESCRIPTION
The j0(), j0f(), j0l(), j1(), j1f(), and j1l() functions return the value of the Bessel function of the first kind of orders 0 (zero) and 1, respectively. The jn(), jnf(), and jnl() functions return the value of the Bessel function of the first kind of order n. The y0(), y0f(), y0l(), y1(), y1f(), and y1l() functions return the value of the Bessel functions of the second kind of orders 0 (zero) and 1, respectively. The yn(), ynf(), and ynl() functions return the value of the Bessel function of the second kind of order n. The following table describes function behavior in response to exceptional arguments: -------------------------------------------------------------- Function Exceptional Argument Routine Behavior -------------------------------------------------------------- j0(), j1(), jn() None N/A j0f(), j1f(), jnf() None N/A j0l(), j1l(), jnl() None N/A y0(), y1(), yn() x < 0 Invalid argument y0f(), y1f(), ynf() x < 0 Invalid argument y0l(), y1l(), ynl() x < 0 Invalid argument y0(), y1(), yn() x = 0 Overflow y0f(), y1f(), ynf() x = 0 Overflow y0l(), y1l(), ynl() x = 0 Overflow -------------------------------------------------------------- The j1() and jn() functions can result in an underflow as x gets small. The largest value of x for which this occurs is a function of n. The y1() and yn() functions can result in an overflow as x gets small. The largest value of x for which this occurs is a function of n. delim off bessel(3)
All times are GMT -4. The time now is 10:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy