06-26-2002
New! (In Unix & In the Forum)
Hi my name Louas and I´m from Argentina (so you must forgive me English!).
I'm studing Unix and I want to know where and how can I conect to practice.
THANK YOU VERY MUCH!!!
Louas.
4 More Discussions You Might Find Interesting
1. Homework & Coursework Questions
Homework Help:
On Posting Questions:
Any and all high school and undergraduate homework assignments or textbook style exercises for which you are seeking assistance are to be posted only in our Homework & Coursework Questions area--not in blogs, visitor messages, PMs, or the main technical... (0 Replies)
Discussion started by: Neo
0 Replies
2. Post Here to Contact Site Administrators and Moderators
Hi,
this is regarding my post "ksh: how to extract strings from each line based on a condition" . Its not a home work or an assigment. I actually work in retail domain. The data I handle is very complex and confidential.So I can't divulge the actual patterns. In order to explain my problem, I have... (1 Reply)
Discussion started by: angie1234
1 Replies
3. UNIX for Dummies Questions & Answers
Purchased a Sun Surefire V210 Server off eBay. Unable to Access the Terminal Mode via the Terminal MGT. Using Windows 7 home, and downloaded the ConEmu.
The ConEmu brings up a Command line on the PC, and that's it.
Being new to all this, I was expecting a Login prompt to pop up. Read the... (22 Replies)
Discussion started by: screenprintr
22 Replies
4. Post Here to Contact Site Administrators and Moderators
Hi, in my case, I have a question for topics that are slightly dealt with in class, which I am investigating on my own but which are not directly related to the lessons.
Do I have to put the name of the school and others?
(I can't put the name of the professor because is against the school rules... (2 Replies)
Discussion started by: Naky
2 Replies
LEARN ABOUT CENTOS
perl::critic::policy::modules::requirenomatchvarswithuseenglish
Perl::Critic::Policy::Modules::RequireNoMatchVarsWithUseUseriContributed Perl DoPerl::Critic::Policy::Modules::RequireNoMatchVarsWithUseEnglish(3)
NAME
Perl::Critic::Policy::Modules::RequireNoMatchVarsWithUseEnglish - "use English" must be passed a "-no_match_vars" argument.
AFFILIATION
This Policy is part of the core Perl::Critic distribution.
DESCRIPTION
Due to unfortunate history, if you use the English module but don't pass in a "-no_match_vars" argument, all regular expressions in the
entire program, not merely the module in question, suffer a significant performance penalty, even if you only import a subset of the
variables.
use English; # not ok
use English '-no_match_vars'; # ok
use English qw< $ERRNO -no_match_vars >; # ok
use English qw($OS_ERROR); # not ok
In the last example above, while the match variables aren't loaded into your namespace, they are still created in the "English" namespace
and you still pay the cost.
CONFIGURATION
This Policy is not configurable except for the standard options.
AUTHOR
Elliot Shank "<perl@galumph.com>"
COPYRIGHT
Copyright (c) 2008-2011 Elliot Shank.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license
can be found in the LICENSE file included with this module.
perl v5.16.3 2014-06-09 Perl::Critic::Policy::Modules::RequireNoMatchVarsWithUseEnglish(3)