Sponsored Content
Top Forums Shell Programming and Scripting awk call in bash function called with arugments not working, something lost in translation? Post 303043598 by vgersh99 on Saturday 1st of February 2020 01:34:14 PM
Old 02-01-2020
I see a couple of potential issues with this approach.
I still don't understand why you can't use the usual paradigm of passing vars with -v to awk and have to use this somewhat convoluted approach.
Any chance you can attach a sample file?

Last edited by vgersh99; 02-01-2020 at 02:51 PM..
 

10 More Discussions You Might Find Interesting

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

2. UNIX for Dummies Questions & Answers

How to call a local function within Awk

Hi, I have the following statement which parses a string for me and prints it out: l_comp="dc000.runksh.test.ksh| $g_sql/dc0000.runksh_test.sql|new.dat|control.ctl" echo $l_comp | awk -F"|" '{ for ( i = 1; i <= NF; i++) { print $i; } } ' Rather then printing the data, I would like to... (5 Replies)
Discussion started by: CAGIRL
5 Replies

3. Shell Programming and Scripting

Bash: how to call function having it's name in variable?

Hello. Looking for a method of modularizing my bash script, I am stuck with such a problem. For example, I have: MODULE_NAME="test" FUNCTION_NAME="run" How do I can a function with name test_run? (4 Replies)
Discussion started by: FractalizeR
4 Replies

4. Infrastructure Monitoring

diffrence between method call and function call in perl

Hello, I have a problem with package and name space. require "/Mehran/DSGateEngineLib/general.pl"; use strict; sub System_Status_Main_Service_Status_Intrusion_Prevention { my %idpstatus; my @result; &General_ReadHash("/var/dsg/idp/settings",\%idpstatus); #print... (4 Replies)
Discussion started by: Zaxon
4 Replies

5. Shell Programming and Scripting

awk , function call problem

#!/bin/bash awk ' function ad(t,r){ return (t+r); } BEGIN{ print ad(5,3); } { print ad(5,3); } ' Doesn't print anything for the last print ad(5,3); (6 Replies)
Discussion started by: cola
6 Replies

6. Shell Programming and Scripting

Return a value from called function to the calling function

I have two scripts. script1.sh looks -------------------------------- #!/bin/bash display() { echo "Welcome to Unix" } display ----------------------------- Script2.sh #!/bin/bash sh script1.sh //simply calling script1.sh ------------------------------ (1 Reply)
Discussion started by: mvictorvijayan
1 Replies

7. Shell Programming and Scripting

error when call function in bash script

Dear all, Could you please advice as I when call function i found the following error " refills: command not found" note that refills is function name. following also the function and how i call it function refills { echo "formatting refills and telepin" >> $log awk -F,... (20 Replies)
Discussion started by: ahmed.gad
20 Replies

8. Shell Programming and Scripting

Ceil not working as function in awk statement

Hi, I have the following code in which i am trying to find ceil of 10th & 11th fields. For finding ceil i have a function in the awk statement. When i test it for some values say on command line it gives correct response(say $10=0 & $11=750). But when the same value occurs in a file having more 3... (5 Replies)
Discussion started by: siramitsharma
5 Replies

9. Shell Programming and Scripting

Bash script from makefile - it is called each time i call make

I've created a tag in the makefile: mytag: $(shell ${PWD}/script.sh) When i do: make clean - the script is executed When i perform make or make mytag the script is again executed with the output: make: Nothing to be done for mytag What i want ? I want script.sh to be executed only... (0 Replies)
Discussion started by: Pufo
0 Replies

10. UNIX for Beginners Questions & Answers

Call user defined function from awk

My requirement is to call function ("fun1") from awk, and print its returned value along with $0. fun1() { t=$1 printf "%02d\n", $t % 60; } echo "Hi There 23" | awk '{print $0; system(fun1 $3)}' Any suggestions what to be modified in above code to achieve requirement.. (5 Replies)
Discussion started by: JSKOBS
5 Replies
XtSetSubvalues()														  XtSetSubvalues()

Name
  XtSetSubvalues - copy resource settings from an ArgList to a subpart resource structure.

Synopsis
  void XtSetSubvalues(base, resources, num_resources, args, num_args)
	 XtPointer base;
	 XtResourceList resources;
	 Cardinal num_resources;
	 ArgList args;
	 Cardinal num_args;

Inputs
  base	    Specifies the base address of the subpart data structure into which the resources should be written.

  resources Specifies the subpart resource list.

  num_resources
	    Specifies the number of resources in the resource list.

  args	    Specifies an argument list of name/value pairs that contain the resource settings to be copied into the subpart data structure.

  num_args  Specifies the number of arguments in the argument list.

Description
  XtSetSubvalues()  copies the values of named resources from args into the structure pointed to by base.  The resource list resources speci-
  fies the size of each resource in this structure, and its offset from base.  The name of each  resource  in  args  is  looked  up  in  this
  resource list, and the resource's specified size and offset are used to copy the resource value into the subpart structure.  If the name of
  a resource in args does not match any of the resources described by resources, then that resource  name/value  pair  in  args  is  silently
  ignored.

  See  XtGetApplicationResources()  for a description of the various fields of a XtResource structure and an example of initializing an XtRe-
  sourceList.

Usage
  If a widget has subpart resources, it can fetch initial values for those resources  from  the  resource  database  by  calling  XtGetSubre-
  sources()  from  its	initialize() method and passing the user's argument list to override values from the database.	In the resource file,
  the subpart will have a name, and the subpart resources will be specified under that name in the resource  hierarchy.   Most	widgets  will
  want	to  allow  the user to set the values of subpart resources from application code as well.  One way to do this is to call XtSetSubval-
  ues() from within the widget's set_values() method, passing the subpart resource list and the user's argument list.  (Prior to  Release  4,
  you  had  to	use  the  set_values_hook()  method  for  this	purpose.)  With this approach, subpart resources seem just like normal widget
  resources to the user; both types of resources can be set by calling XtSetValues().  Another approach is  to	provide  a  special  function
  (which  will use XtSetSubvalues()) to set values of your subpart.  This approach emphasizes that the subpart is a distinct component of the
  widget.

  Note that a more flexible alternative to subparts is to use non-widget objects which the user can create as children of your widget.	 This
  way the user has a handle on the "subparts" and can manipulate them directly.

  To get the values of named resources from a subpart, use XtGetSubvalues().

  To  set resource values in a subpart structure using a NULL-terminated variable-length argument list instead of an ArgList, use XtVaSetSub-
  values().

Structures
  XtResource is defined as follows:

     typedef struct _XtResource {
	String	  resource_name;  /* Resource name */
	String	  resource_class; /* Resource class */
	String	  resource_type;  /* Representation type desired */
	Cardinal  resource_size;  /* Size in bytes of representation */
	Cardinal  resource_offset;/* Offset from base to put resource value */
	String	  default_type;   /* Representation type of specified default */
	XtPointer default_addr;   /* Address of resource default value */
     } XtResource, *XtResourceList;

  See XtGetApplicationResources() for an explanation of the fields of this structure.

  Arg are defined as follows:

     typedef struct {
	 String name;
	 XtArgVal value;
     } Arg, *ArgList;

See Also
  XtGetApplicationResources(1), XtGetSubresources(1), XtGetSubvalues(1),
  set_values(4).

Xt - Resource Management													  XtSetSubvalues()
All times are GMT -4. The time now is 02:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy