usage of Unix properties file (.prop)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers usage of Unix properties file (.prop)
# 1  
Old 08-18-2008
usage of Unix properties file (.prop)

Can someone explain exactly how the user defined .prop files will be invoked for a given shell file (.sh file)?

Thanks,
Prakash
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To determine the File Sytem Usage on Multiple UNIX server

Hello All :) I want to write a shell script to find the file system usage on multiple UNIX servers. Commands: df -g fsJCAPS Below script works fine and it displays results on terminal/console. I want to store /redirect output on to local server from where I'm running the script. ... (3 Replies)
Discussion started by: Mohammad Nawaz
3 Replies

2. Shell Programming and Scripting

Installing a bin file by taking input from a properties file

I need to install a bin file in UNIX which requires user interaction for giving some information like user id , path, sid etc. All these information is stored in a properties file in the same location. So if i give ./file.bin -f propfile.properties will it install the file taking all the... (1 Reply)
Discussion started by: coolmohere
1 Replies

3. UNIX for Dummies Questions & Answers

How to specify Java System Properties in UNIX?

I am setting up Kerberos authentication and this is one of the steps: 1. Open the JBoss startup script. 2. Add the following Java System Properties -Djava.security.krb5.conf=/disk01/kerb/krb5.conf -Djavax.security.auth.useSubjectCredsOnly=false I added these 2 lines and it works in a... (0 Replies)
Discussion started by: shoefiend
0 Replies

4. Shell Programming and Scripting

script to parse the properties file

Hi Friends, I have a requirement to parse a properties file having a key=value pairs. i need to count the number of key value pairs in the properties file and iterate through each key-value pair. I have written the script to read the number of lines from the property file, but cannot... (2 Replies)
Discussion started by: prashdeep
2 Replies

5. Shell Programming and Scripting

reading in properties file

Hi Am new to this scripting stuff so bear with me. I got a script made now that reads in a properties file. The properties file is in the following format: 256= Bos, Sea, FRa 128= HEL I want to be able to read in each line of the file and split out the letter fields by the numbered field. This... (2 Replies)
Discussion started by: vsekvsek
2 Replies

6. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

7. UNIX for Dummies Questions & Answers

Disk Usage in GB and Unix command to find the biggest file/folder

Hi All, Please help me out 1) Command to find the disk usage in GB. I know that du -k will give in kilobites. 2) How to find the Biggest file/folder in a given set of files/folders. Thanks in advance Regards, Manas (8 Replies)
Discussion started by: manas6
8 Replies

8. UNIX for Advanced & Expert Users

File Usage for CISAM file in UNIX

As we know CISAM files can be used up to 2G in UNIX. But I am failed to write record to file below: -rw-rw-rw- 1 bit profit 1073741312 20 Apr 06:38 pfszzzzz.dat -rw-rw-rw- 1 bit profit 151461888 20 Apr 06:38 pfszzzzz.idx my ulimit setting is like below: # ulimit -a ... (0 Replies)
Discussion started by: alice@qrra.com
0 Replies

9. UNIX for Dummies Questions & Answers

File properties

Hi , I do have a line in my code as follows: if ] ; then ... else ... fi What does the -z does ? Similarly there is -s in some other part of the code. I guess there are many options like this.. Can anybody please tell what all options are available and what do they mean ? (2 Replies)
Discussion started by: risshanth
2 Replies

10. HP-UX

Depot file properties

Hi How can we identify the informations like Author, meta data, dependency and other information from a depot file? (1 Reply)
Discussion started by: sethumadhavan
1 Replies
Login or Register to Ask a Question
di_prop_next(3DEVINFO)				       Device Information Library Functions				    di_prop_next(3DEVINFO)

NAME
di_prop_next - libdevinfo property traversal function SYNOPSIS
cc [ flag... ] file... -ldevinfo [ library... ] #include <libdevinfo.h> di_prop_t di_prop_next(di_node_t node, di_prop_t prop); PARAMETERS
node Handle to a device node. prop Handle to a property. DESCRIPTION
The di_prop_next() function returns a handle to the next property on the property list. If prop is DI_PROP_NIL, the handle to the first property is returned. RETURN VALUES
Upon successful completion, di_prop_next() returns a handle. Otherwise DI_PROP_NIL is returned and errno is set to indicate the error. ERRORS
The di_prop_next() function will fail if: EINVAL Invalid argument. ENOTSUP The snapshot does not contain property information. ENXIO There are no more properties. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
di_init(3DEVINFO), libdevinfo(3LIB), attributes(5) Writing Device Drivers SunOS 5.10 1 Dec 1998 di_prop_next(3DEVINFO)