Sponsored Content
Top Forums Shell Programming and Scripting Beginner Scripting for school Post 302942640 by hulsi88 on Thursday 30th of April 2015 12:13:31 PM
Old 04-30-2015
Beginner Scripting for school

Hello people, I am new to the forum and to scripting and I'm honored to be a part of the Forum Smilie

At the moment I'm learning to do basic scripting for school.
Now I got 2 assignments that I do not understand. The case scripting I have mastered a bit. But now I have an assingment to make with ''set date'' and I hope you guys can help me Smilie

First assignment is to make a script where that knows when it is Morning,afternoon or evening.

It must use $LOGINNAME to determine whether it's
Good morning <loginname>
Good afternoon <loginname>
Good evening < loginname>

So when you for example put in the commandline: ./timeofday
It must say Good Morning Patrick ( if its morning ).
Or Good afternoon Patrick ( if its the afternoon )

I hope you guys understand what I mean, my english isnt very good.

Second assignment is to make a script that when you put in a ''letter'' it says: You have entered the letter M
And when you put in number it says: You have entered the number 7.

I hope you guys can help me with it.

Much Appreciated

Kind Regards

hulsi
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Beginner bash scripting - a few problems

Hey Guys, I am creating a bash script on my freeBSD box, the script should basically ask the user to enter a username and domain. The script will take this information and basically append alot of information to config files so the user can receive email from that domain and create a web site at... (1 Reply)
Discussion started by: traxy
1 Replies

2. Homework & Coursework Questions

Beginner Scripting Issue

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: The object is to enter a number, then have another classmate guess the entered number. 2. Relevant commands,... (6 Replies)
Discussion started by: Jjohn1987
6 Replies

3. Shell Programming and Scripting

Need help for scripting beginner

hy guys, I have perl script provided to me but i need to convert it into shell .Can you help me in this using sed shell command. cat /etc/passwd |perl -ne '/^(\w+):\w+: (\w+)/ and print "$1, $2\n";' (1 Reply)
Discussion started by: singh_king
1 Replies

4. Shell Programming and Scripting

[Bash] Beginner at scripting

Hi, I'm a beginner at shell scripting, just started scripting in bash a few days ago. I want to test if the command ls *.jpg returns exit code 2, and if yes I want to execute a new command ls *.jpeg, doing a test on it... and pretty much repeat the procedure. Is this correct? #!/bin/bash... (1 Reply)
Discussion started by: Utherr
1 Replies

5. OS X (Apple)

scripting beginner

hi i have been given the task of sorting some scripting issues , i first of all need to decifer the ones that are being used is there anybody can do this for me :rolleyes: (4 Replies)
Discussion started by: aguiness
4 Replies

6. UNIX for Dummies Questions & Answers

shell scripting project for school

i need to prompt the user for a) group of scores b) calculate the lowest and highest scores and overall average c) print out to the screen d ask if user has any more data to process, if so repeat (loop) for a new set of scores if not exit. i have this much,and trust me i know... (1 Reply)
Discussion started by: bodhi 926
1 Replies

7. Homework & Coursework Questions

shell scripting project for school

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: i need to prompt the user for a) group of scores b) calculate the lowest and highest scores and... (1 Reply)
Discussion started by: bodhi 926
1 Replies

8. Shell Programming and Scripting

Beginner - scripting help!

hi all, i am very new to linux and am trying to create a basic script. I would like the script to copy files from one directory into another, (e.g Script ~/my-documents/fileone ~/my-documents/filetwo) Once all files have been copied, i'd like another script to run automatically and rename... (12 Replies)
Discussion started by: highland
12 Replies

9. Shell Programming and Scripting

Beginner Bash Scripting Question

Hello, I am new to Linux and studying to become a Unix System Admin. I am taking a course in which I was practicing creating a bash script to ping a particular IP address. The script can be found below: #/bin/bash echo "Enter the IP address" read ip if then ping -c 1 $ip if ;... (3 Replies)
Discussion started by: shah9250
3 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 01:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy