Sponsored Content
Top Forums Shell Programming and Scripting Passing a variable name to be created within a function Post 47180 by 435 Gavea on Wednesday 4th of February 2004 12:19:44 PM
Old 02-04-2004
CPU & Memory Passing a variable name to be created within a function

Is it possible to pass a variable name, as a parameter to a function, so it can be created within this function ?

Something like this:

func_uppercase abcdefgh var_name

where the 1st parameter is the string I want to convert and the 2nd is the desired variable name...

$2=`echo "$1" | $TR_PATH "[:lower:]" "[:upper:]"`

(TR_PATH contains the path of the tr that accepts these options...
TR_PATH='/usr/bin/tr')

I tried to run this and it returns a msg like:

var_name="string..." : not found

I'm using ksh under Sun OS...

Thanks anyway !
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

passing variable to function

Hi, I am trying to sum up numbered columns and in order to tidy up the program I have wrote a function to do the adding of some numbers. I have a problem though with passing a variable to the function in the UNIX bash shell. The function only gives the first number in the variable list and does... (4 Replies)
Discussion started by: Knotty
4 Replies

2. UNIX for Advanced & Expert Users

Passing a unix variable value to a Plsql function

Suppose I have a unix variable called RGNM which is holding a value. Now I want to call a plsql function in my script. THis plsql function takes one IN parameter. I want to pass my UNIX VARIABLE Value to the plsql function. Can i just give it by giving $RGNM in the function after calling sqlplus... (1 Reply)
Discussion started by: cobroraj
1 Replies

3. UNIX for Dummies Questions & Answers

passing a variable inside a variable to a function

I would like to know how to pass a variable inside a variable to a function. sample code below -------------- for x in 1 9 do check_null $C$x ##call function to check if the value is null if then echo "line number:$var_cnt,... (2 Replies)
Discussion started by: KingVikram
2 Replies

4. Shell Programming and Scripting

Passing global variable to a function which is called by another function

Hi , I have three funcions f1, f2 and f3 . f1 calls f2 and f2 calls f3 . I have a global variable "period" which i want to pass to f3 . Can i pass the variable directly in the definition of f3 ? Pls help . sars (4 Replies)
Discussion started by: sars
4 Replies

5. Shell Programming and Scripting

passing variable content to a function

following on from below link https://www.unix.com/shell-programming-scripting/171076-shell-scripting.html#post302573569 i will be using file reading in while loop say for example while read line123 do echo "line read is $line123" insert_funct $line123 done< mysqldump.sql... (6 Replies)
Discussion started by: vivek d r
6 Replies

6. Programming

Created a wrapper for a function in a class.

I have a class called Parsing with the following function. I want to create a wrapper for it, so that I call it using GetReal rather than GetFloat. Bit confused on how to do this. class Parsing { private: int Length; // int Ptr; ... (3 Replies)
Discussion started by: kristinu
3 Replies

7. Shell Programming and Scripting

Passing alias to a function

The objective of this function is to validate the file full path. cat /dev/null > crontab_NOTEXISTS.txt function File_Existence # Accepts 1 parameter { file_name="$(echo $1)" echo "${file_name}" && break || echo "$file_name NOT FOUND" >> crontab_NOTEXISTS.txt } while read file_name... (7 Replies)
Discussion started by: aimy
7 Replies

8. UNIX for Advanced & Expert Users

Passing variable as input & storing output in other variable

I have a below syntax its working fine... var12=$(ps -ef | grep apache | awk '{print $2,$4}') Im getting expected output as below: printf "%b\n" "${VAR12}" dell 123 dell 456 dell 457 Now I wrote a while loop.. the output of VAR12 should be passed as input parameters to while loop and results... (5 Replies)
Discussion started by: sam@sam
5 Replies

9. Shell Programming and Scripting

Passing variable value in a function to be used by another function

Hello All, I would like to ask help from you on how to pass variable value from a function that has been called inside the function. I have created below and put the variables in " ". Is there another way I can do this? Thank you in advance. readtasklist() { while read -r mod ver... (1 Reply)
Discussion started by: aderamos12
1 Replies

10. Programming

Local variable in a C function is not getting created in stack when its compiled with GCC

Hi, I am working in UEFI EDK2 Bios source. We created a platform related new package in the EDK2 source. I find a strange issue with the platform related code we added. When I did source level debugging I noticed the local variable in a C function is not getting created in stack when its... (6 Replies)
Discussion started by: Divya R
6 Replies
EvmEventFormat(3)					     Library Functions Manual						 EvmEventFormat(3)

NAME
EvmEventFormat, EvmEventFormatFromTemplate, EvmVarFormat - Format events for display LIBRARY
EVM Support Library (libevm.so, libevm.a) SYNOPSIS
#include <evm/evm.h> EvmStatus_t EvmEventFormat( char *buffer, size_t length, EvmEvent_t event); EvmStatus_t EvmEventFormatFromTemplate( char *buffer, size_t length, EvmString_t show_template, EvmEvent_t event); EvmStatus_t EvmVarFormat( EvmEvent_t event, const char *var_name, char *buffer, size_t length, EvmBoolean_t trans- late); PARAMETERS
A pointer to a character string to receive the formatted event data. The stored string will be null-terminated, even if truncated, unless the length parameter is zero (0). The maximum length of the output string. If the formatted event is longer than length, the output is truncated. The event to be formatted. The primary template for formatting the output. The name of a variable data item contained in the event whose value is to be formatted. A Boolean value indicating whether I18N translation should be attempted on the variable value. Translation will be attempted if this parameter is EvmTRUE, the variable is of type string and includes an I18N message identifier, and the event contains I18N catalog information. DESCRIPTION
Information contained in an event must be formatted to present it in human-readable form. The event poster supplies formatting information through the event's format data item, and the routines described here provide the event formatting capability. The EvmEventFormat() routine combines the supplied event's format data item with any data items or variables specified in the event's for- mat item that are available in the event, and returns a formatted version of the event in buffer. If the event contains I18N message catalog information, and the catalog is available in the user's locale, the format string is retrieved from the message catalog if possible. If no translation is possible the format string contained in the event is used. If the event does not contain format information, a generic display of the event's name and any variables is produced. The EvmEventFormatFromTemplate() routine also formats the supplied event, but uses the supplied show_template string as its primary format- ting template. Literal characters in the show_template are transferred to the buffer unchanged. Any token of the form @item_name[%width] or @{item_name[%width]} is replaced by the value of the corresponding data item from the supplied event, if it is present. If width is supplied, the value occupies a minumum of width character positions. The item_name is the name of a standard event data item. The special string @@ is replaced by the results of applying EvmEventFormat() to the event. Refer to evmshow(1) and EvmEvent(5) for more information about formatting events for display. EvmVarFormat() retrieves a variable called var_name from the supplied event, and returns a formatted version of its value in buffer. I18N translation is applied as appropriate if the value of translate is EvmTRUE. NOTES
Floating point values are formatted using the printf(3) %.8g format specifier. RETURN VALUES
The operation was completed without error. One of the arguments to the function was invalid. A value in a structure member is invalid. An operation failed because an attempt to acquire heap memory failed. ERRORS
None FILES
None SEE ALSO
Commands: evmshow(1) Routines: EvmEventDump(3), printf(3), setlocale(3) Files: locale(4) Event Management: EVM(5) EVM Events: EvmEvent(5) Common Desktop Environment: Programmer's Guide delim off EvmEventFormat(3)
All times are GMT -4. The time now is 04:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy