Sponsored Content
Top Forums Shell Programming and Scripting Trouble Assigning Variable with Function Post 302919341 by Corona688 on Tuesday 30th of September 2014 03:16:55 PM
Old 09-30-2014
Quote:
Originally Posted by sudo
To clarify, I have several arrays that I would like to call independently.
This is not obvious when you post an example containing one and exactly one array used directly.

What do you mean by 'call independently'? Are you trying to make an array-full-of-arrays kind of thing or what?

"${array[$i]}" is wrong, for does not work that way, see my above post.

Quote:
Do you know how I can pass "${array[@]}" into the function?
By doing function "${array[@]}" It all ends up in $@ inside the function. To show further:

Code:
dosomething () {
        for i in "$@"
        do
                echo "dosomething:  $i"
        done
}

array1=( "a b" c "d e" )
array2=( q w e r t )

dosomething "${array1[@]}" extra stuff "${array2[@]}"

This is not pseudo-code. Paste it and it should work.

Last edited by Corona688; 09-30-2014 at 04:26 PM..
This User Gave Thanks to Corona688 For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trouble using substr function with Bourne shell script

Hi, I'm a newbie to UNIX scripting and I'm having some trouble compiling my script. I'm using the Bourne Shell and cannot seem to use the substr function correctly. I'm trying to extract the last two digits of a year that's stored in a variable based off of a condition. I've searched the... (4 Replies)
Discussion started by: E2004
4 Replies

2. Shell Programming and Scripting

Assigning Value of variable

Hi In my shell script, I'm trying to find the line count of a file and assign it to a variable. LINE_COUNT=$(wc -l $FILE_NAME) But when i display LINE_COUNT, i'm getting the linecount concatenated with the file name. I want only the number. How can i get the line count alone ? Someone... (2 Replies)
Discussion started by: janemary.a
2 Replies

3. UNIX for Dummies Questions & Answers

Trouble with UNIX tr (translate) function

UNIX script - problem. I want the spaces in my Item variable to be replaced with a question mark. Can you tell me what I am doing wrong? This is the whole code line. Item | tr -s " " "?" Why is this not making any changes to the Item value? Thanks for any help you can give! tg (2 Replies)
Discussion started by: by_tg
2 Replies

4. Shell Programming and Scripting

assigning SED output to a variable = trouble!

i'm on a Mac running BSD unix. i have a script in which i ask the user to input the name of a mounted volume. i then call SED to substitute backslashes and spaces in place of the spaces. that looks like this: echo "Enter the name of the volume" read Volume echo "You've chosen \"$Volume\""... (7 Replies)
Discussion started by: hungryd
7 Replies

5. Shell Programming and Scripting

Assigning value to a variable

can we make a global variable and store character values and add other values to that variable ?? for example a="hello, John" and can we add value ". How are you? so a can have "hello, John. How are you?" can someone help me?? (2 Replies)
Discussion started by: bonosungho
2 Replies

6. Shell Programming and Scripting

variables not assigning in a function

Hi GUYS, I have function. I am assigning a line count to count variable. But it is throwing an error at this line. function_recur (){ #file being created in this function lenth = `wc -l function_outpu.dat`; echo $lenth; } this is the error i got rec.ksh: lenth: not found. ... (3 Replies)
Discussion started by: mac4rfree
3 Replies

7. Shell Programming and Scripting

Removing a character from a variable and assigning it to another variable?

Hi folks. I have this variable called FirstIN that contains something like this: 001,002,003,004... I am trying to assign the content of this variable into ModifiedIN but with the following format : 001 002 003 004...(changing the commas for spaces) I thought about using sed but i am not... (17 Replies)
Discussion started by: Stephan
17 Replies

8. UNIX for Dummies Questions & Answers

Trouble Assigning AWK variables

Hi, I made an executable file in terminal and it looks like this. echo Enter the name of the file without the .wig extension read NAME echo Enter the ratio read RATIO awk '{$2*=$RATIO;{print $0}}' ${NAME}.wig > ${NAME}normalized.wig I have a file with several million lines that look... (6 Replies)
Discussion started by: wyarosh
6 Replies

9. Shell Programming and Scripting

problem in assigning value to variable have value fo other variable

my script is some thing like this i11="{1,2,3,4,5,6,7,8,9,10,11,}" echo "enter value" read value ..............suppose i11 x="$value" echo "$($value)" .............the echo should be {1,2,3,4,5,6,7,8,9,10,11,} but its showing "i11" only. plz help me out to get desired... (10 Replies)
Discussion started by: sagar_1986
10 Replies

10. Red Hat

Trouble assigning user to group in OpenLDAP

Hello, I am working on setup LDAP Server and facing issue related to assigning user to a group. Below is the LDAP structure i am using. I have created Users,Groups and Servers ou's and sub ou's added to the same or Users as well as Groups OU. Logged in as: cn=Manager,dc=bebolabs,dc=net ... (0 Replies)
Discussion started by: sunnysthakur
0 Replies
MicroMason(3pm) 					User Contributed Perl Documentation					   MicroMason(3pm)

NAME
Text::MicroMason - Simple and Extensible Templating SYNOPSIS
Mason syntax provides several ways to mix Perl into a text template: <%args> $name </%args> % if ( $name eq 'Dave' ) { I'm sorry <% $name %>, I'm afraid I can't do that right now. % } else { <%perl> my $hour = (localtime)[2]; my $daypart = ( $hour > 11 ) ? 'afternoon' : 'morning'; </%perl> Good <% $daypart %>, <% $name %>! % } Create a MicroMason object to interpret the templates: use Text::MicroMason; $mason = Text::MicroMason->new(); Use the compile method to convert templates into a subroutines: $coderef = $mason->compile( text=>$template ); print $coderef->('name'=>'Alice'); Or use the execute method to parse and evalute in one call: print $mason->execute( text=>$template, 'name'=>'Bob' ); Templates stored in files can be run directly or included in others: print $mason->execute( file=>"./greeting.msn", 'name'=>'Charles'); For additional features, select mixin classes to add to your MicroMason object: $mason = Text::MicroMason->new( qw( -CatchErrors -Safe -Filters ) ); You can import various functions if you prefer to avoid method calls: use Text::MicroMason::Functions qw( compile execute ); print execute($template, 'name'=>'Dave'); $coderef = compile($template); print $coderef->('name'=>'Bob'); DESCRIPTION
Text::MicroMason interpolates blocks of Perl code embedded into text strings. Each MicroMason object acts as a "template compiler," which converts templates from text-with-embedded-code formats into ready-to-execute Perl subroutines. MicroMason Initialization Use the new() method to create a Text::MicroMason object with the appropriate mixins and attributes. $mason = Text::MicroMason->new( %attribs ); You may pass attributes as key-value pairs to the new() method to save various options for later use by the compile() method. Template Compilation To compile a text template, pass it to the compile() method to produce a new Perl subroutine to be returned as a code reference: $code_ref = $mason->compile( $type => $source, %attribs ); Any attributes provided to compile() will temporarily override the persistent options defined by new(), for that template only. You can provide the template as a text string, a file name, or an open file handle: $code_ref = $mason->compile( text => $template ); $code_ref = $mason->compile( text => $template ); $code_ref = $mason->compile( file => $filename ); $code_ref = $mason->compile( handle => $fh ); $code_ref = $mason->compile( handle => *FILE ); Template files are just plain text files that contains the string to be parsed. The files may have any name and extension you wish. The filename specified can either be absolute or relative to the program's current directory. Template Execution To execute the template and obtain the output, call a compiled function: $result = $code_ref->( @arguments ); (Note that the $code_ref->() syntax is unavailable in older versions of Perl; use the equivalent &$code_ref() syntax instead.) As a shortcut, the execute method compiles and runs the template one time: $result = $mason->execute( $type => $source, @arguments ); $result = $mason->execute( $type => $source, \%attribs, @arguments ); Argument Passing You can pass arguments to a template subroutine using positional or named arguments. For positional arguments, pass the argument list and read from @_ as usual: $mason->compile( text=>'Hello <% shift(@_) %>.' )->( 'Dave' ); For named arguments, pass in a hash of key-value pairs to be made accessible in an %ARGS hash within the template subroutine: $mason->compile( text=>'Hello <% $ARGS{name} %>.' )->( name=>'Dave' ); Additionally, you can use named arguments with the %args block syntax: $mason->compile( text=>'<%args>$name</%args>Hello <% $name %>.' )->( name=>'Dave' ); Mixin Selection Arguments passed to new() that begin with a dash will be added as mixin classes. $mason = Text::MicroMason->new( -Mixin1, %attribs, -Mixin2 ); Every MicroMason object inherits from an abstract Base class and some set of mixin classes. By combining mixins you can create subclasses with the desired combination of features. See Text::MicroMason::Base for documentation of the base class, including private methods and extension mechanisms. If you call the new method on Text::MicroMason, it automatically includes the HTMLMason mixin, which provides the standard template syntax. If you want to create an object without the default HTMLMason functionality, call Text::MicroMason::Base->new() instead. Some mixins define the syntax for a particular template format. You will generally need to select one, and only one, of the mixins listed in "TEMPLATE SYNTAXES". Other mixins provide optional functionality. Those mixins may define additional public methods, and may support or require values for various additional attributes. For a list of such mixin classes, see "MIXIN FEATURES". TEMPLATE SYNTAXES
Templates contain a mix of literal text to be output with some type of markup syntax which specifies more complex behaviors. The Text::MicroMason::HTMLMason mixin is selected by default. To enable an alternative, pass its name to Text::MicroMason::Base->new( - MixinName ). HTMLMason The HTMLMason mixin provides lexer and assembler methods that handle most elements of HTML::Mason's template syntax. my $mason = Text::MicroMason::Base->new( -HTMLMason ); my $output = $mason->execute( text => $template, name => 'Bob' ); <%args> $name => 'Guest' </%args> % if ( $name eq 'Dave' ) { I'm sorry <% $name %>, I'm afraid I can't do that right now. % } else { <%perl> my $hour = (localtime)[2]; my $daypart = ( $hour > 11 ) ? 'afternoon' : 'morning'; </%perl> Good <% $daypart %>, <% $name %>! % } <& "includes/standard_footer.msn" &> <%doc> Here's a private developr comment describing this template. </%doc> For a definition of the template syntax, see Text::MicroMason::HTMLMason. DoubleQuote The DoubleQuote mixin uses Perl's double-quoting interpolation as a minimalist syntax for templating. my $mason = Text::MicroMason::Base->new( -DoubleQuote ); my $output = $mason->execute( text => $template, name => 'Bob' ); ${ $::hour = (localtime)[2]; $::daypart = ( $::hour > 11 ) ? 'afternoon' : 'morning'; '' } Good $::daypart, $ARGS{name}! For more information see Text::MicroMason::DoubleQuote. Embperl The Embperl mixin support a template syntax similar to that used by the HTML::Embperl module. my $mason = Text::MicroMason::Base->new( -Embperl ); my $output = $mason->execute( text => $template, name => 'Bob' ); [- my $name = $ARGS{name}; -] [$ if $name eq 'Dave' $] I'm sorry [+ $name +], I'm afraid I can't do that right now. [$ else $] [- my $hour = (localtime)[2]; my $daypart = ( $hour > 11 ) ? 'afternoon' : 'morning'; -] Good [+ $daypart +], [+ $name +]! [$ endif $] For more information see Text::MicroMason::Embperl. HTMLTemplate The HTMLTemplate mixin supports a syntax similar to that used by the HTML::Template module. my $mason = Text::MicroMason::Base->new( -HTMLTemplate ); my $output = $mason->execute( text => $template, name => 'Bob' ); <TMPL_IF NAME="user_is_dave"> I'm sorry <TMPLVAR NAME="name">, I'm afraid I can't do that right now. <TMPL_ELSE> <TMPL_IF NAME="daytime_is_morning"> Good morning, <TMPLVAR NAME="name">! <TMPL_ELSE> Good afternoon, <TMPLVAR NAME="name">! </TMPL_IF> </TMPL_IF> For more information see Text::MicroMason::HTMLTemplate. ServerPages The ServerPages mixin supports a syntax similar to that used by the Apache::ASP module. my $mason = Text::MicroMason::Base->new( -ServerPages ); my $output = $mason->execute( text => $template, name => 'Bob' ); <% my $name = $ARGS{name}; if ( $name eq 'Dave' ) { %> I'm sorry <%= $name %>, I'm afraid I can't do that right now. <% } else { my $hour = (localtime)[2]; my $daypart = ( $hour > 11 ) ? 'afternoon' : 'morning'; %> Good <%= $daypart %>, <%= $name %>! <% } %> For more information see Text::MicroMason::ServerPages. Sprintf The Sprintf mixin uses Perl's sprintf formatting syntax for templating. my $mason = Text::MicroMason::Base->new( -Sprintf ); my $output = $mason->execute( text => $template, 'morning', 'Bob' ); Good %s, %s! For more information see Text::MicroMason::Sprintf. TextTemplate The TextTemplate mixin supports a syntax similar to that used by the Text::Template module. my $mason = Text::MicroMason::Base->new( -TextTemplate ); my $output = $mason->execute( text => $template, name => 'Bob' ); { $hour = (localtime)[2]; $daypart = ( $hour > 11 ) ? 'afternoon' : 'morning'; '' } Good { $daypart }, { $name }! For more information see Text::MicroMason::TextTemplate. MIXIN FEATURES
The following mixin classes can be layered on to your MicroMason object to provide additional functionality. To add a mixin's functionality, pass it's name with a dash to the new() method: $mason = Text::MicroMason->new( -CatchErrors, -PostProcess ); AllowGlobals Enables access to a set of package variables to be shared with templates. For details see Text::MicroMason::AllowGlobals. CatchErrors Both compilation and run-time errors in your template are handled as fatal exceptions. To prevent a template error from ending your program, enclose it in an eval block: my $result = eval { $mason->execute( text => $template ) }; if ( $@ ) { print "Unable to execute template: $@"; } else { print $result; } To transparently add this functionality to your MicroMason object, see Text::MicroMason::CatchErrors. CompileCache Calling execute repeatedly will be slower than compiling once and calling the template function repeatedly, unless you enable compilation caching. For details see Text::MicroMason::CompileCache. Debug When trying to debug a template problem, it can be helpful to watch the internal processes of template compilation. This mixin adds controllable warning messages that show the intermediate parse information. For details see Text::MicroMason::Debug. LineNumbers Provide better line numbers when compilation fails, at the cost of potentially slower compilation and execution. For details see Text::MicroMason::LineNumbers. ExecuteCache Each time you execute the template all of the logic will be re- evaluated, unless you enable execution caching, which stores the output of each template for each given set of arguments. For details see Text::MicroMason::ExecuteCache. Filters HTML::Mason provides an expression filtering mechanism which is typically used for applying HTML and URL escaping functions to output. Text::MicroMason->new(-Filters)->compile( text => $template ); <p> Hello <% $name |h %>! The Filters mixin provides this capability for Text::MicroMason templates. To select it, add its name to your Mason initialization call: my $mason = Text::MicroMason->new( -Filters ); Output expressions may then be followed by "|h" or "|u" escapes; for example this line would convert any ampersands in the output to the equivalent HTML entity: Welcome to <% $company_name |h %> For more information see Text::MicroMason::Filters. PassVariables Allows you to pass arguments to templates as variables instead of the basic argument list. For details see Text::MicroMason::PostProcess. PostProcess Allows you to specify one or more functions through which all template output should be passed before it is returned. For details see Text::MicroMason::PostProcess. Safe By default, the code embedded in a template has accss to all of the capabilities of your Perl process, and could potentially perform dangerous activities such as accessing or modifying files and starting other programs. If you need to execute untrusted templates, use the Safe module, which can restrict the operations and data structures that template code can access. To add this functionality to your MicroMason object, see Text::MicroMason::Safe. TemplateDir The filenames passed to the compile() or execute() methods can be looked up relative to a base directory path or the current template file. To add this functionality to your MicroMason object, see Text::MicroMason::TemplateDir. TemplatePath The filenames passed to the compile() or execute() methods are looked up relative to a list of multiple base directory paths, in order. It tries as hard as possible to maintain compatibility with caching and <& &> template includes. To add this functionality to your MicroMason object, see Text::MicroMason::TemplatePath. OTHER INTERFACES
Function Exporter Importable functions are provided for users who prefer a procedural interface. The supported functions are listed in Text::MicroMason::Functions. (For backwards compatibility, those functions can also be imported from the main Text::MicroMason package.) Template Frameworks Adaptor modules are available to use MicroMason from within other frameworks. For more information, see Any::Template::Backend::Text::MicroMason and Catalyst::View::MicroMason. Inline MicroMason templates can be embbeded within your source code using Inline. For more information, see Inline::Mason. EXCEPTIONS
Text::MicroMason croaks on error, with an appropriate error string. Some commonly occurring error messages are described below (where %s indicates variable message text). See also the pod for each mixin class, for additional exception strings that may be thrown. o MicroMason parsing halted at %s Indicates that the parser was unable to finish tokenising the source text. Generally this means that there is a bug somewhere in the regular expressions used by lex(). (If you encounter this error, please feel free to file a bug report or send an example of the error to the author using the addresses below, and I'll attempt to correct it in a future release.) o MicroMason compilation failed: %s The template was parsed successfully, but the Perl subroutine declaration it was converted to failed to compile. This is generally a result of a syntax error in one of the Perl expressions used within the template. o Error in template subroutine: %s Additional diagnostic for compilation errors, showing the text of the subroutine which failed to compile. o Error in template file %s, interpreted as: %s Additional diagnostic for compilation errors in external files, showing the filename and the text of the subroutine which failed to compile. o MicroMason execution failed: %s After parsing and compiling the template successfully, the subroutine was run and caused a fatal exception, generally because that some Perl code used within the template caused die() to be called (or an equivalent function like croak or confess). o MicroMason: filename is missing or empty One of the compile or execute methods was called with an empty or undefined filename, or one of the compile_file or execute_file methods was called with no arguments. o MicroMason can't read from %s: %s One of the compile_file or execute_file functions was called but we were unable to read the requested file, because the file path is incorrect or we have insufficient priveleges to read that file. SEE ALSO
For distribution, installation, support, copyright and license information, see Text::MicroMason::Docs::ReadMe. perl v5.10.1 2011-01-13 MicroMason(3pm)
All times are GMT -4. The time now is 09:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy