Sponsored Content
Full Discussion: Password slashes.
Top Forums UNIX for Dummies Questions & Answers Password slashes. Post 11271 by hellz on Friday 30th of November 2001 10:42:53 PM
Old 11-30-2001
Hehe, thanks mate! Last thing I wanna do is to bug anyone with stupid questions lol. Gives me an excuse to sharpen up with Perl too Smilie

hellz.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX and forward slashes

Hey, This is probably going to sound like an immensely stupid and dull question, but can someone please tell me whether the forward slash on the web address (http://) signifies that it is running on UNIX? hanks (1 Reply)
Discussion started by: steverocliffe
1 Replies

2. Shell Programming and Scripting

slashes in a bash shell

Substituting the / for the \ I came up with this: sed s/\\\\usr\\\\qm/\\\\\\\\qmi/g Can anyone explain to me please, why I have to pass the slash four times? :confused: (2 Replies)
Discussion started by: Shakey21
2 Replies

3. UNIX for Dummies Questions & Answers

sed command for using with back slashes

hi all, im trying to use a sed command to remove all occurenes of \p\g what i used so far is : sed 's!\p\g!!g' file but this doesnt work ? Any ideas, thanks for helping. (2 Replies)
Discussion started by: seaten
2 Replies

4. UNIX for Dummies Questions & Answers

dots and slashes

when I execute a command in like "run.sh," I can run it two ways: ./run.sh or . run.sh What is the difference? (1 Reply)
Discussion started by: DarkLord
1 Replies

5. Shell Programming and Scripting

search replace pattern containing slashes

Need help in finding pattern then replacing pattern that contains multiple slashes .. ex . <imgp src="Attention_web.eps.jpg" align="left"> <imgp src="NewToday062308.eps.jpg"> replace with <imgp src="/ww2/adpay/liner/Attention_web.eps.jpg" align="left"> <imgp... (2 Replies)
Discussion started by: aveitas
2 Replies

6. Shell Programming and Scripting

sed - how to remove trailing slashes

I know you can remove trialing slashes using: #echo "/tmp/one/two/three////" | sed "s,/$,," /tmp/one/two/three/// But I want to know how to make it remove all trialing flashes in the front, and in the start, so the end result is: tmp/one/two/three Anyone have any idea how to do this... (6 Replies)
Discussion started by: EXT3FSCK
6 Replies

7. Shell Programming and Scripting

question on blackslashes and slashes in directories

Since I'm usually on windows I've came across different shells like Cygwin, Hamilton, and MKS. I've been working in csh most of the time, so porting scripts from one shell to another can be fairly annoying and confusing. When specifying a directory I noticed that certain shells do not recognize... (1 Reply)
Discussion started by: vas28r13
1 Replies

8. Cybersecurity

Server is ignoring slashes

When I try to access my website's Administrator page (mysite.com/administrator), I'm redirected to (mysite.comadministrator), as if the slash was removed from the URL The funny thing is that I can access it if I enter 2 slashes (mysite.com//administrator) Any ideas of what might be causing it? (4 Replies)
Discussion started by: rlopes
4 Replies

9. Shell Programming and Scripting

Need to extract the data between slashes

I have got the following contents and please can you advise me on how to extract the following data that appears between the very first slashes. Thanks i.e 576 , 10000, 1299 3/576/GPP///////NONE/0 50/10000/GPP///D4////GPP/0 234/1299/GPP///////NONE/0 (3 Replies)
Discussion started by: Sudhakar333
3 Replies

10. Programming

Print slashes using C

I want to print 4052 slashes using this C program. #include <stdio.h> void main() { int i; for (i=0; i<4052; i++) printf ("/"); } When i compile this via gcc am getting this error : http://gyazo.com/e0403e4789575d181d1695f9db3e6d6e.png Can anyone point out what am doing wrong? (15 Replies)
Discussion started by: vish6251
15 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:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy