Sponsored Content
Full Discussion: C shell & Bourne Shell
Top Forums Shell Programming and Scripting C shell & Bourne Shell Post 302106686 by jsm66 on Monday 12th of February 2007 02:04:31 AM
Old 02-12-2007
Thanks for that .. can u please explain :-

$ ./get_property_value.sh LOG_PATH $BLMBRGDATA/blmbrg.properties
/home/mahalja/sbclocal/dyn/data/blmbrg_pricing/logs
$ get_property_value.sh LOG_PATH $BLMBRGDATA/blmbrg.properties
get_property_value.sh: not found

thanks..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Bourne-again shell

Hi guys !! well i'm still new in learning UNIX , and actually i'm still studying it by myself .. anyway, some people told me the Bourne-again shell is a good version of UNIX to work on , and i tried to download yesterday but i didn't know how to start it ...... the ReadMe file associated with... (3 Replies)
Discussion started by: mrsamer
3 Replies

2. UNIX for Dummies Questions & Answers

bourne shell or korn shell?

Hi, I have a script that uses "nohup" command to execute a korn shell script. Which one is the correct shell to use bourne shell or korn shell to execute a korn shell? and why? Thanks in advanced. (2 Replies)
Discussion started by: XZOR
2 Replies

3. Shell Programming and Scripting

how to log if the program contains both bourne-shell & pearl scripts

I have a program (say, MyProgram) written in Bourne-shell script, but at some point it calls another script written in pearl, as illustrated below: #!/bin/sh ..... case $x in 1) ConfigSystem1 ( b-shell script) 2) ConfigSystem2 ( pl) 3) ConfigSystem3 (b-shell) .... Then I create... (0 Replies)
Discussion started by: bluemoon1
0 Replies

4. Shell Programming and Scripting

Need Bourne shell tutorial

Hello. I need a good & complete Bourne shell tutorial. Please, can anyone help me to find it? Thanks. (1 Reply)
Discussion started by: jag
1 Replies

5. Shell Programming and Scripting

How to define array in Bourne shell , csh & ksh

Dear friends... Kindly if any one can help me to know the differences in definning & retreiving data from arrays in the sh,csh & ksh. I always facing problems in this issue. thanks...:) BR (3 Replies)
Discussion started by: ahmad.diab
3 Replies

6. Shell Programming and Scripting

I need to understand the differences between the bash shell and the Bourne shell

I do not claim to be an expert, but I have done things with scripts that whole teams of folks have said can not be done. Of course they should have said we do not have the intestinal fortitude to git-r-done. I have been using UNIX actually HPUX since 1992. Unfortunately my old computer died and... (7 Replies)
Discussion started by: awk_sed_hello
7 Replies

7. Shell Programming and Scripting

How to activate Korn Shell functionnalities in Bourne Shell

Hi All I have writing a Korn Shell script to execute it on many of our servers. But some servers don't have Korn Shell installed, they use Borne Shell. Some operations like calculation don't work : cat ${file1} | tail -$((${num1}-${num2})) > ${file2} Is it possible to activate Korn Shell... (3 Replies)
Discussion started by: madmat
3 Replies

8. Shell Programming and Scripting

Bourne/C shell help

Exercise Five Write a Bourne shell script which: • Professionalism: plan for this from the start. • Has one command line argument. • If the command line argument is a directory then the script should output the number of files in the directory. • If the command line argument is an ordinary... (2 Replies)
Discussion started by: moesom
2 Replies

9. Shell Programming and Scripting

Bourne shell & Korn shell

Could some one tell me the difference btw Bourne shell and the Kshell? Which is more flexible and reliable in terms of portability and efficiency. When i type the following command .. $ echo $SHELL yields me /bin/sh Does this tells me that I am in Bourne shell. If yes, how can i get... (6 Replies)
Discussion started by: bobby1015
6 Replies

10. Cybersecurity

'Shell Shock' vulnerability in Bourne shell

A severe vulnerability was discovered in Bourne shell. Just google for: bash vulnerability ... for more details. (5 Replies)
Discussion started by: Cochise
5 Replies
CosPropertyService_PropertySet(3erl)			     Erlang Module Definition			      CosPropertyService_PropertySet(3erl)

NAME
CosPropertyService_PropertySet - This module implements the OMG CosPropertyService::PropertySet interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosProperty/include/CosPropertyService.hrl"). EXPORTS
define_property(PropertySet, Name, Value) -> Reply Types PropertySet = #objref Name = non-empty string() Value = #any Reply = ok | {'EXCEPTION', #CosPropertyService_InvalidPropertyName{}} | {'EXCEPTION', #CosPropertyService_ConflictingProp- erty{}} | {'EXCEPTION', #CosPropertyService_UnsupportedTypeCode{}} | {'EXCEPTION', #CosPropertyService_UnsupportedProperty{}} | {'EXCEPTION', #CosPropertyService_ReadOnlyProperty{}} This operation adds a new property to the given object. Depending on which initial arguments was supplied when starting the object several exceptions may be raised. define_properties(PropertySet, Properties) -> Reply Types PropertySet = #objref Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] Name = string() Value = #any Reply = ok | {'EXCEPTION', #CosPropertyService_MultipleExceptions{exceptions = Excs}} Excs = [#'CosPropertyService_PropertyException{reason = Reason, failing_property_name = Name}] Reason = invalid_property_name | conflicting_property | property_not_found | unsupported_type_code | unsupported_property | unsupported_mode | fixed_property | read_only_property This operation adds several new properties to the given object. Depending on which initial arguments was supplied when starting the object an exceptions may be raised listing the properties failing. get_number_of_properties(PropertySet) -> ulong() Types PropertySet = #objref This operation returns the number of properties associated with the target object. get_all_property_names(PropertySet, Max) -> Reply Types PropertySet = NamesIterator = #objref Max = ulong() Reply = {ok, Names, NamesIterator} Names = [string()] This operation returns up to Max property names. If the target object have additional associated properties they will be put in the returned Iterator, otherwise the Iterator will be a NIL object. get_property_value(PropertySet, Name) -> Reply Types PropertySet = #objref Name = string() Reply = #any | {'EXCEPTION', #CosPropertyService_PropertyNotFound{}} | {'EXCEPTION', #CosPropertyService_InvalidProperty- Name{}} This operation returns the property value associated with given name. If no such property exists or the given name is an empty string an exception will be raised. get_properties(PropertySet, Names) -> Reply Types PropertySet = #objref Names = [string()] Reply = {boolean(), Properties} Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] This operation returns all properties associated with given names. If the boolean flag is true all properties where retrieved cor- rectly, otherwise, all properties with the type tk_void was not found. get_all_properties(PropertySet, Max) -> Reply Types PropertySet = PropertiesIterator = #objref Reply = {ok, Properties, PropertiesIterator} Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] This operation return a list Max properties or less. If more properties are associated with the target object they will be put in the PropertiesIterator . If the object had less than Max associated properties the Iterator will be a NIL object. delete_property(PropertySet, Name) -> Reply Types PropertySet = #objref Name = string() Reply = ok | {'EXCEPTION', #CosPropertyService_FixedProperty{}} | {'EXCEPTION', #CosPropertyService_PropertyNotFound{}} | {'EXCEPTION', #CosPropertyService_InvalidPropertyName{}} This operation tries to delete the property with given Name. An exception which indicates why it failed is raised if so needed. delete_properties(PropertySet, Names) -> Reply Types PropertySet = #objref Names = [string()] Reply = ok | {'EXCEPTION', #CosPropertyService_MultipleExceptions{exceptions = Excs}} Excs = [#'CosPropertyService_PropertyException{reason = Reason, failing_property_name = Name}] Reason = invalid_property_name | conflicting_property | property_not_found | unsupported_type_code | unsupported_property | unsupported_mode | fixed_property | read_only_property This operation tries to delete all given Properties. If one or more removal fails an exception is raised which describe why. delete_all_properties(PropertySet) -> boolean() Types PropertySet = #objref This operation deletes all properties. The boolean flag, if set to false, indicates that it was not possible to remove one or more properties, e.g., may be read only. is_property_defined(PropertySet, Name) -> Reply Types PropertySet = #objref Name = non-empty string() Reply = boolean() | {'EXCEPTION', #CosPropertyService_InvalidPropertyName{}} This operation returns true if the target have an associated property with given name. Ericsson AB cosProperty 1.1.13 CosPropertyService_PropertySet(3erl)
All times are GMT -4. The time now is 09:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy