Sponsored Content
Full Discussion: Unix shell script learning
Special Forums UNIX Desktop Questions & Answers Unix shell script learning Post 302438734 by joeyg on Tuesday 20th of July 2010 03:01:14 PM
Old 07-20-2010
Hammer & Screwdriver cygwin

I have installed cygwin on a couple of different PC's. And yes, you can use to practice scripting commands - I use it to try and test certain commands.

Have fun...
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

where to obtain UNIX and learning on a UNIX variant?

Hi. I've just started to get into UNIX. Researched on the Net, found out that most of the UNIX variants are not offered online. 1. Any of you guys know where I could obtain them on the Net? or anywhere at all? 2. Does learning a UNIX variant enough to cover an understanding of other UNIX... (6 Replies)
Discussion started by: ninelives1980
6 Replies

2. UNIX for Dummies Questions & Answers

Learning to write UNIX Shell Scripts

Hi All, I am relatively new to UNIX. I know some basic commands. I am learning to write shell scripts. My first aim is to connect to a Data Base via shell script. Any ideas on this? Any links, docs which will tell me about scripting?? Thanks VEN (1 Reply)
Discussion started by: VENC22
1 Replies

3. UNIX for Dummies Questions & Answers

Learning UNIX

Hi guys! Am new to this forum so would like to say hello to all. Was wondering, what the best way to learn UNIX was? Theoretically or Practically? Cheers (2 Replies)
Discussion started by: bibah11
2 Replies

4. Shell Programming and Scripting

learning how to use shell script

hello everyone, i am still trying to get this script to work, but with no luck. It is a little beyond my knowledge of scripting at the moment. The beginner book i have has an exercise listed that asks me to write a script tha allows for user input. For example " what is your name: " and then you... (3 Replies)
Discussion started by: bebop1111116
3 Replies

5. UNIX for Dummies Questions & Answers

Learning Unix

Hi all, and thanks for viewing this thread. I have never used the terminal (UNIX) before, not until I read an introductory book about it: Unix for Mac OS X Tiger. Now I've become intrigued, and I want to uncover more of the mysteries of Unix. I've searched and searched, but there are many books... (5 Replies)
Discussion started by: Hin
5 Replies

6. UNIX for Dummies Questions & Answers

learning unix

Hi, i have started to learn unix (on and off for the past few months) and am wishing to move into that area in the administration field of it. I have been working in the help desk area (desktop support - windows based) for about 2.5 years and moved into a team leading role for 1 year in which i... (1 Reply)
Discussion started by: donnieDarko
1 Replies

7. UNIX for Dummies Questions & Answers

Learning Tips - UNIX Shell Script

Can any one please provide a fast learning tips to learn UNIX shell scripting? Thanks, Gov (3 Replies)
Discussion started by: Govindh.v
3 Replies

8. UNIX for Dummies Questions & Answers

Learning UNIX

Hi Everyone, I know nothing about Solaris / Linux / AIX but I know they are all part of Unix. I have been using Windows the last 15years and I have been a LAN admin, I am now working in IT Operations and we use some solaris commands but not much plus its from following a document so we can't... (1 Reply)
Discussion started by: maxie
1 Replies

9. UNIX for Dummies Questions & Answers

Book for Learning unix shell scripting reall good

Hi guys I want o learn and understand shell scripting real good, Ive got already some background Due to the fact that there is ton of books with these theme, can you recommend me some good book with with examples explanations, pls no theoretical books :D Thxs (3 Replies)
Discussion started by: kl1ngac1k
3 Replies

10. Shell Programming and Scripting

Learning project ideas - shell, python, UNIX tools, system administration

Hi guys, I am currently working as a system administration engineer, administering telecom applications on linux/unix platforms. I want to learn new things and improve the ones that i have and for this i though to really work on some project or something but i lack of ideas. I want to be... (2 Replies)
Discussion started by: capitanui
2 Replies
Mojolicious::Commands(3pm)				User Contributed Perl Documentation				Mojolicious::Commands(3pm)

NAME
Mojolicious::Commands - Command line interface SYNOPSIS
use Mojolicious::Commands; # Command line interface my $commands = Mojolicious::Commands->new; $commands->run(@ARGV); DESCRIPTION
Mojolicious::Commands is the interactive command line interface to the Mojolicious framework. It will automatically detect available commands in the "Mojolicious::Command" namespace. COMMANDS
These commands are available by default. "help" $ mojo $ mojo help $ ./myapp.pl help List available commands with short descriptions. $ mojo help <command> $ ./myapp.pl help <command> List available options for the command with short descriptions. "cgi" $ ./myapp.pl cgi Start application with CGI backend. "cpanify" $ mojo cpanify -u sri -p secr3t Mojolicious-Plugin-Fun-0.1.tar.gz Upload files to CPAN. "daemon" $ ./myapp.pl daemon Start application with standalone HTTP 1.1 server backend. "eval" $ ./myapp.pl eval 'say app->home' Run code against application. "generate" $ mojo generate $ mojo generate help $ ./myapp.pl generate help List available generator commands with short descriptions. $ mojo generate help <generator> $ ./myapp.pl generate help <generator> List available options for generator command with short descriptions. "generate app" $ mojo generate app <AppName> Generate application directory structure for a fully functional Mojolicious application. "generate lite_app" $ mojo generate lite_app Generate a fully functional Mojolicious::Lite application. "generate makefile" $ mojo generate makefile $ ./myapp.pl generate makefile Generate "Makefile.PL" file for application. "generate plugin" $ mojo generate plugin <PluginName> Generate directory structure for a fully functional Mojolicious plugin. "get" $ mojo get http://mojolicio.us $ ./myapp.pl get /foo Perform requests to remote host or local application. "inflate" $ ./myapp.pl inflate Turn templates and static files embedded in the "DATA" sections of your application into real files. "psgi" $ ./myapp.pl psgi Start application with PSGI backend. "routes" $ ./myapp.pl routes List application routes. "test" $ mojo test $ ./myapp.pl test $ ./myapp.pl test t/fun.t Runs application tests from the "t" directory. "version" $ mojo version $ ./myapp.pl version Show version information for installed core and optional modules, very useful for debugging. ATTRIBUTES
Mojolicious::Commands inherits all attributes from Mojo::Command and implements the following new ones. "hint" my $hint = $commands->hint; $commands = $commands->hint('Foo!'); Short hint shown after listing available commands. "message" my $message = $commands->message; $commands = $commands->message('Hello World!'); Short usage message shown before listing available commands. "namespaces" my $namespaces = $commands->namespaces; $commands = $commands->namespaces(['Mojolicious::Commands']); Namespaces to load commands from, defaults to "Mojolicious::Command" and "Mojo::Command". # Add another namespace to load commands from push @{$commands->namespaces}, 'MyApp::Command'; METHODS
Mojolicious::Commands inherits all methods from Mojo::Command and implements the following new ones. "detect" my $env = $commands->detect; my $env = $commands->detect($guess); Try to detect environment. "run" $commands->run; $commands->run(@ARGV); Load and run commands. Automatic deployment environment detection can be disabled with the "MOJO_NO_DETECT" environment variable. "start" Mojolicious::Commands->start; Mojolicious::Commands->start(@ARGV); Start the command line interface. # Always start daemon and ignore @ARGV Mojolicious::Commands->start('daemon', '-l', 'http://*:8080'); "start_app" Mojolicious::Commands->start_app('MyApp'); Mojolicious::Commands->start_app(MyApp => @ARGV); Load application and start the command line interface for it. # Always start daemon for application and ignore @ARGV Mojolicious::Commands->start_app('MyApp', 'daemon', '-l', 'http://*:8080'); SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojolicious::Commands(3pm)
All times are GMT -4. The time now is 12:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy