Sponsored Content
Full Discussion: Grep inline use perl
Homework and Emergencies Emergency UNIX and Linux Support Grep inline use perl Post 302760395 by justbow on Thursday 24th of January 2013 02:07:19 AM
Old 01-24-2013
what about if i wanna use the perl scripts ?
not use the command?
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Inline Parameters-Urgent

Can someone tell me how to enter inline parameters with script call? This is a little urgent so some help would be highly appreciated. Thanks a lot. Indira (2 Replies)
Discussion started by: indira
2 Replies

2. Shell Programming and Scripting

Array Printing Inline

Dear friends , The output file of below script Pls#!/bin/sh awk '{ bo = substr($0,13,3) slm = substr($0,150,8) slo = substr($0,175,7) inc = substr($0,97,10)/100 busi = substr($0,83,10) mth = substr($0,39,2) yer = substr($0,35,4) ... (2 Replies)
Discussion started by: vakharia Mahesh
2 Replies

3. Programming

Inline function inside Classes

#include <iostream> using namespace std; class A { public: int Getvalue() { return i;} private: int i; }; int main() {} The above code compiles properly in g++ or in any other C++ compiler. BUT, the variable 'i' is used (in 'return i' statement) before it is... (1 Reply)
Discussion started by: deepthi.s
1 Replies

4. Shell Programming and Scripting

inline redirect stdin

Hi: I have the next script on ksh #!/usr/bin/ksh cd $FUENTES qdesign <<-! \$/opt/cognos/ph843e/bin/qtp <<-! \$/opt/cognos/ph843e/bin/quiz <<-! ! ! ! This script is very simple, i want to nest three process quiz into qtp, and this into qdesign. When I run it , i receive the... (5 Replies)
Discussion started by: ct2marer
5 Replies

5. UNIX for Advanced & Expert Users

inline redirect stdin

Hi: I have the next script on ksh #!/usr/bin/ksh cd $FUENTES qdesign <<-! \$/opt/cognos/ph843e/bin/qtp <<-! \$/opt/cognos/ph843e/bin/quiz <<-! ! ! ! This script is very simple, i want to nest three process quiz into qtp, and this into qdesign. When I run it , i receive the next... (2 Replies)
Discussion started by: ct2marer
2 Replies

6. Shell Programming and Scripting

Scripting for inline input

Hello, I'm not much familiar with scripting, just a little bit. Maybe someone could give an advice how implement my task. It might be in shell or perl. I have linux system where I install Kerberos. Now I have to add user. It's done like this from prompt: 1. run kadmin.local 2. it switches to... (1 Reply)
Discussion started by: susja
1 Replies

7. Post Here to Contact Site Administrators and Moderators

inline code tags

How to add inline tags in the posts? Like in this thread post #4. Thanks. (5 Replies)
Discussion started by: clx
5 Replies

8. Programming

Perl : Inline program to determine file size

Hi, I have 5 files as below $ ll sam* -rw-rw-rw- 1 sam ugroup 0 Mar 21 06:06 sam3 -rw-rw-rw- 1 sam ugroup 0 Apr 3 22:41 sam2 -rw-rw-rw- 1 sam ugroup 17335 Apr 10 06:07 sam1 -rw-rw-rw- 1 sam ugroup 5 Apr 10 07:53 sam5 -rw-rw-rw- 1 sam ugroup 661 Apr 10 08:16 sam4 I want to list out... (4 Replies)
Discussion started by: sam05121988
4 Replies

9. Shell Programming and Scripting

Perl inline replace only on 1st line

I have file file_1.out which contains the data below <tr> MAIL # 1 TO src_1 </tr> <tr><td class="hcol">col_id</td> <td class="hcol">test_dt</td> <td class="hcol">user_type</td> <td class="hcol">ct</td></tr> <tr><td class="bcol">1</td> <td class="bcol">2012-09-20</td> <td class="bcol">A</td>... (4 Replies)
Discussion started by: sol_nov
4 Replies
HasVersion(3)						User Contributed Perl Documentation					     HasVersion(3)

NAME
Test::HasVersion - Check Perl modules have version numbers SYNOPSIS
"Test::HasVersion" lets you check a Perl module has a version number in a "Test::Simple" fashion. use Test::HasVersion tests => 1; pm_version_ok("M.pm", "Valid version"); Module authors can include the following in a t/has_version.t file and let "Test::HasVersion" find and check all installable PM files in a distribution. use Test::More; eval "use Test::HasVersion"; plan skip_all => 'Test::HasVersion required for testing for version numbers' if $@; all_pm_version_ok(); DESCRIPTION
Do you wanna check that every one of your Perl modules in a distribution has a version number? You wanna make sure you don't forget the brand new modules you just added? Well, that's the module you have been looking for. Use it! Do you wanna check someone else's distribution to make sure the author have not commited the sin of leaving Perl modules without a version that can be used to tell if you have this or that feature? "Test::HasVersion" is also for you, nasty little fellow. There's a script test_version which is installed with this distribution. You may invoke it from within the root directory of a distribution you just unpacked, and it will check every .pm file in the directory and under lib/ (if any). $ test_version You may also provide directories and files as arguments. $ test_version *.pm lib/ inc/ $ test_version . (Be warned that many Perl modules in a t/ directory do not receive versions because they are not used outside the distribution.) Ok. That's not a very useful module by now. But it will be. Wait for the upcoming releases. FUNCTIONS PRIVATE _pm_version $v = _pm_version($pm); Parses a PM file and return what it thinks is $VERSION in this file. (Actually implemented with "use ExtUtils::MakeMaker; MM->parse_version($file)".) $pm is the filename (eg., lib/Data/Dumper.pm). pm_version_ok pm_version_ok('Module.pm'); pm_version_ok('M.pm', 'Has valid version'); Checks to see if the given file has a valid version. Actually a valid version number is defined and not equal to 'undef' (the string) which is return by "_pm_version" if a version cannot be determined. all_pm_version_ok all_pm_version_ok(); all_pm_version_ok(@PM_FILES); Checks every given file and .pm files found under given directories to see if they provide valid version numbers. If no argument is given, it defaults to check every file *.pm in the current directory and recurses under the lib/ directory (if it exists). If no test plan was setted, "Test::HasVersion" will set one after computing the number of files to be tested. Otherwise, the plan is left untouched. PRIVATE _list_pm_files @pm_files = _list_pm_files(@dirs); Returns all PM files under the given directories. all_pm_files @files = all_pm_files() @files = all_pm_files(@files_and_dirs); Implements finding the Perl modules according to the semantics of the previous function "all_pm_version_ok". USAGE
Other usage patterns besides the ones given in the synopsis. use Test::More tests => $num_tests; use Test::HasVersion; pm_version_ok($file1); pm_version_ok($file2); Obviously, you can't plan twice. use Test::More; use Test::HasVersion; plan tests => $num_tests; pm_version_ok($file); "plan" comes from "Test::More". use Test::More; use Test::HasVersion; plan 'no_plan'; pm_version_ok($file); "no_plan" is ok either. SEE ALSO
Test::Version Please reports bugs via CPAN RT, http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-HasVersion AUTHOR
A. R. Ferreira, <ferreira@cpan.org> COPYRIGHT AND LICENSE
Copyright (C) 2006 by A. R. Ferreira This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2006-10-07 HasVersion(3)
All times are GMT -4. The time now is 10:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy