Sponsored Content
Top Forums Shell Programming and Scripting How to call "if NOT test; then..." Post 302298247 by chebarbudo on Tuesday 17th of March 2009 04:15:44 AM
Old 03-17-2009
Thanks vidyadhar for your time and help.
Thanks rikxik for your prop, that's exactly what I was looking for.
 

9 More Discussions You Might Find Interesting

1. Programming

error "Invalid argument" returned after call sched_setscheduler

the code is below and the was run on Solaris 9. ----------------------------- struct sched_param param; param.sched_priority = 99; if(sched_setscheduler(0, SCHED_RR, &param) == -1) { perror("setting priority"); exit(1); } ------------------------------- after the... (1 Reply)
Discussion started by: robin.zhu
1 Replies

2. 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

3. 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

4. Shell Programming and Scripting

Test command with "-z" and "-n"

Hello all, Please let me know, why the value of $? is diff for -z and -n. And explain what are the operends we can use with "test" and their purpose.. $ test -z "" $ echo $? 0 $ test -n "" $ echo $? 1 Thanx in advance.. (2 Replies)
Discussion started by: divya bandipotu
2 Replies

5. UNIX for Dummies Questions & Answers

What is the significance of sh -s in ssh -qtt ${user}@${host} "sh -s "${version}"" < test.sh?

Please can you help me understand the significance of providing arguments under sh -s in > ssh -qtt ${user}@${host} "sh -s "${version}"" < test.sh (4 Replies)
Discussion started by: Sree10
4 Replies

6. Shell Programming and Scripting

Shc : trying to test functionality "test" compiling but can not execute

I am testing shc to see if it would help with my need. Im at a point where Im trying to compile and test the "test.ksh" file that comes in the tar ball : shc-3.8.9> shc -v -r -f test.ksh shc shll=ksh shc =-c shc =exec '%s' "$@" shc = shc opts= shc: cc test.ksh.x.c -o test.ksh.x... (7 Replies)
Discussion started by: popeye
7 Replies

7. 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

8. 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

9. 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
scf_property_create(3SCF)												 scf_property_create(3SCF)

NAME
scf_property_create, scf_property_handle, scf_property_destroy, scf_property_get_name, scf_property_type, scf_property_is_type, scf_prop- erty_get_value, scf_pg_get_property - create and manipulate property handles in the Service Configuration Facility SYNOPSIS
cc [ flag... ] file... -lscf [ library... ] #include <libscf.h> scf_property_t *scf_property_create(scf_handle_t *handle); scf_handle_t *scf_property_handle(scf_property_t *prop); void scf_property_destroy(scf_property_t *prop); ssize_t scf_property_get_name(const scf_property_t *prop, char *buf, size_t size); int scf_property_type(const scf_property_t *prop, scf_type_t *type); int scf_property_is_type(const scf_property_t *prop, scf_type_t type); int scf_property_get_value(const scf_property_t *prop, scf_value_t *value); int scf_pg_get_property(const scf_property_t *pg, const char *name, scf_property_t *prop); Properties are named sets of values of one type. They are grouped into property groups (see scf_pg_create(3SCF)) that are updated atomi- cally using transactions (see scf_transaction_create(3SCF)). An scf_property_t is an opaque handle that can be set to a single property at any given time. When set, it inherits the point-in-time from the source scf_propertygroup_t and does not change until reset. The scf_property_create() function allocates and initializes a new scf_property_t bound to handle. The scf_property_destroy() function destroys and frees prop. The scf_property_handle() function returns the handle to which prop is bound. The scf_property_type() function retrieves the type of the property to which prop is set. The scf_property_is_type() function determines if the property is compatible with type. See scf_value_is_type(3SCF). The scf_property_get_value() function retrieves the single value that the property to which prop is set contains. If the property has more than one value, the value argument is set to one of the values. To retrieve all values associated with a property, see scf_iter_prop- erty_values(3SCF). The scf_pg_get_property() function sets prop to the property specified by name in the property group specified by pg. Upon successful completion, scf_property_create() returns a new scf_property_t. Otherwise, it returns NULL. Upon successful completion, scf_property_get_name() function returns the length of the string written, not including the terminating null byte. Otherwise, it returns -1. Upon successful completion, scf_pg_get_property(), scf_property_type(), scf_property_is_type(), and scf_pg_get_value() functions return 0. Otherwise, they return -1. The scf_property_create() function will fail if: SCF_ERROR_INVALID_ARGUMENT The value of the handle argument is NULL. SCF_ERROR_NO_MEMORY There is not enough memory to allocate an scf_property_t. SCF_ERROR_NO_RESOURCES The server does not have adequate resources for a new property handle. The scf_property_handle() function will fail if: SCF_ERROR_HANDLE_DESTROYED The handle associated with prop has been destroyed. The scf_property_get_name(), scf_property_type(), scf_property_is_type(), and scf_property_get_value() functions will fail if: SCF_ERROR_DELETED The property's parent property group or an ancestor has been deleted. SCF_ERROR_NOT_BOUND The handle was never bound or has been unbound. SCF_ERROR_NOT_SET The property is not set. SCF_ERROR_CONNECTION_BROKEN The connection to the repository was lost. The scf_property_is_type() function will fail if: SCF_ERROR_INVALID_ARGUMENT The type argument is not a valid type. SCF_ERROR_TYPE_MISMATCH The prop argument is not of a type compatible with type. The scf_pg_get_property() function will fail if: SCF_ERROR_NOT_SET The property group specified by pg is not set. SCF_ERROR_NOT_FOUND The property specified by name was not found. SCF_ERROR_INVALID_ARGUMENT The value of the name argument is not a valid property name. SCF_ERROR_HANDLE_MISMATCH The property group and property are not derived from the same handle. SCF_ERROR_CONNECTION_BROKEN The connection to the repository was lost. SCF_ERROR_NOT_BOUND The handle was never bound or has been unbound. SCF_ERROR_DELETED The property group or an ancestor has been deleted. The scf_property_get_value() function will fail if: SCF_ERROR_CONSTRAINT_VIOLATED The property has more than one value associated with it. The value argument will be set to one of the values. SCF_ERROR_NOT_FOUND The property has no values associated with it. The value argument will be reset. SCF_ERROR_HANDLE_MISMATCH The property and value are derived from different handles. The scf_error(3SCF) function can be used to retrieve the error value. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ libscf(3LIB), scf_error(3SCF), scf_handle_decode_fmri(3SCF), scf_iter_property_values(3SCF), scf_pg_create(3SCF), scf_prop- erty_to_fmri(3SCF), scf_transaction_create(3SCF), scf_value_is_type(3SCF), attributes(5) 24 Aug 2005 scf_property_create(3SCF)
All times are GMT -4. The time now is 05:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy