- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tell me more about perl
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 06:18 AM
10-14-2002 06:18 AM
Also, is it available on Tru64, AIX and Windows 2000?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 06:23 AM
10-14-2002 06:23 AM
Solutionyes, yes, and yes.
The starting point is www.perl.org/CPAN.
If you want perl for Windows XXXX then www.activeperl.com has a freely available version.
I strongly suggest that you purchase a number of the O'reilly Perl books: 'Learning Perl', 'Programming Perl', 'Advanced Perl Programming' and 'Perl Cookbook' are pretty much "musthaves".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 06:28 AM
10-14-2002 06:28 AM
Re: tell me more about perl
Perl is a fantastic scripting language that has been ported to all the systems you mentioned and many more. Probably the best place to start is http://www.perl.com to download it, get documentation, etc. I suggest buying the great O'Reilly Perl books to get you started. Start with "Learning Perl". As you get into it and have questions, this forum is a great place to ask questions as there are some Perl wizards haunting this place.
Have fun!
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 06:31 AM
10-14-2002 06:31 AM
Re: tell me more about perl
Yes, perl is available for all unix os's and windoze.
Also,
http://www.perlmonks.com/
http://www.perlarchive.com/index.shtml
http://www.4images.com/ntperl/
and many many more
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 06:38 AM
10-14-2002 06:38 AM
Re: tell me more about perl
Perl rocks!
For HP-UX, you can get my ports on https://www.beepz.com/personal/merijn
I leared perl by using a2p and s2p to convert my awk and sed scripts to perl and looked how /they/ did it. After I saw it's power, I bought "learning perl" from O'Reilly. After finishing that I bough "Programming Perl" from O'Reilly. Now I'm the Configure Pumpkin for perl5 and the current maintainer of README.hpux and hints/hpux.sh
How things can go ... :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 06:39 AM
10-14-2002 06:39 AM
Re: tell me more about perl
http://www.activestate.com/
Never forget to learn how does the Perl the debugger works.
$ perl -d
after the first few weeks you started. I find it VALUABLE !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2002 07:03 AM
10-14-2002 07:03 AM
Re: tell me more about perl
perl-5.005_03 and older:
#!/opt/perl/bin/perl -w
use strict;
perl-5.6.0 and newer:
#!/opt/perl/bin/perl
use strict;
use warnings;
and for all, if you still don't understand the warnings, extend the messages:
use diagnostics;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 11:33 AM
10-15-2002 11:33 AM