Search the web
Sign In
New User? Sign Up
Perl_Official · Perl . CGI . Shell script
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2033 - 2062 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2033
... The code may have gotten stripped as a "non-text attachment". Try pasting the relevant portion(s) in-line. A few things could keep you from being able to...
rob_wilson_98
Online Now
Aug 14, 2007
2:22 pm
2034
Avinash, The last suggestion which surrounded the kill command with grave accents (`kill -9 PID`) was essentially causing perl to spawn a process and running...
Glen
glen_brydon
Offline Send Email
Aug 14, 2007
3:43 pm
2035
... Glen> The last suggestion which surrounded the kill command with grave Glen> accents (`kill -9 PID`) was essentially causing perl to spawn a Glen> process...
merlyn@...
merlynstoneh...
Online Now Send Email
Aug 14, 2007
5:59 pm
2036
Hi, I am fairly new to Perl and have written some Perl to interface with an API that comes with an application i am working with. I now need to bypass the API...
chipwillis2003
Offline Send Email
Aug 15, 2007
8:43 pm
2037
hi, i am killing all the process that are displayed using the ps command. but doing that the particular unix session also terminates. so how to prevent the...
avinash k
avik1612
Offline Send Email
Aug 16, 2007
11:07 pm
2038
Example string $Data=":2-Name1:4-Name2:3-Name3:1-Name4:"; I need to get the following info ... But All I can search with is ... In other words I know it starts...
Luinrandir Hernsen
luinrandir
Offline Send Email
Aug 31, 2007
5:00 pm
2039
#!/usr/bin/perl use strict ; my @Name; my $Name; my $X = 1; my $Y = 2; my $Data=":2-Lou-14:4-Bobby:3-Tine13:1-jack 23:"; my $Info = ($Data =~ /:$Y-(.*?):/); ...
Lou Hernsen
luinrandir
Offline Send Email
Aug 31, 2007
5:00 pm
2040
The main problem with your attempted solution is that .* is greedy. This means that the colon it would find is the last one on the line. Greedy means that .*...
Glen Brydon
glen_brydon
Offline Send Email
Sep 1, 2007
12:22 am
2041
Thanks for the responce Glen If you going to ask why I don't use MySql... I have not had time to figure out who to use it... I am just now begining to grasp...
Lou Hernsen
luinrandir
Offline Send Email
Sep 4, 2007
5:27 pm
2042
hi, I am trying to find particular words in text files(i.e. *.txt files) Should i use regular expressions in doing? Thanks in advance Avinash ... Get the...
avinash k
avik1612
Offline Send Email
Sep 7, 2007
12:03 am
2043
Hi, Actually i want to check if a environmental variable in perl script, which is present in oracle database has been already set its path in hash table in...
pukazhs
Offline
Sep 7, 2007
12:03 am
2044
Hello Avinash, yes u can easily find the word and its line through regx. here i have just given a simple example to your reference. im also preparing the perl...
K. Senthil Kumar
senmal2003
Offline Send Email
Sep 9, 2007
2:53 am
2045
please someone post perl turorial with examples expecially for administrators Thanks in advance...
arun5167
Offline Send Email
Sep 9, 2007
2:54 am
2046
Avinash, Here's one solution. Darren ==== #!/bin/perl/bin ### ### title: pgrep ### author: darren miller ### ### perl alternative to UNIX grep command, ###...
millerdw2003
Offline Send Email
Sep 9, 2007
3:03 am
2047
... Here is a small exercise that I have prepared. This is meant for someone who wants to learn Perl. Exercise 1. In a Perl script, accept command line...
Yogesh Sawant
yoga_sawant
Offline Send Email
Sep 12, 2007
8:41 pm
2048
... If you are referring to Windows Registry, then check out these modules: Win32::TieRegistry, Win32::TieRegistry::Dump, and Win32::Registry::File Cheers ...
Yogesh Sawant
yoga_sawant
Offline Send Email
Sep 12, 2007
8:41 pm
2049
... for ... How do you lear or leanr Perl? Your best offline resource for learning Perl would be: Programming Perl 3rd edition by Larry Wall, Tom Christiansen,...
Yogesh Sawant
yoga_sawant
Offline Send Email
Sep 12, 2007
8:42 pm
2050
Hi, I have to create a script to read a zip files of a folder and then extract all those zip files to another destination inside a folder created with the name...
avinash k
avik1612
Offline Send Email
Sep 27, 2007
10:30 pm
2051
Hi, I have created a script to extarct a set of zip files in a particular folder to another destination . In the destination folder a folder would be created...
avinash k
avik1612
Offline Send Email
Oct 2, 2007
10:12 pm
2052
If you are completely new to scripts and programs then, PERL in 21 days might help you.. just PRACTICE it before going to Programming PERL - Larry Wall .. ...
Shreedhar
ps_dhar2000
Offline Send Email
Oct 2, 2007
10:14 pm
2053
Hi, I'm pretty new to Perl and need some help! I am working on a project that requires 4 forms on the same page. I would like to be able to submit each one...
Andy Schafer
lostgameparts
Offline Send Email
Oct 25, 2007
6:10 pm
2054
... Hi, The solution is HTML related. All that you have to do is to add "target" attribute to the <form> element: <form ... target="_blank" >. In this case the...
Marcel Preda
marcel_preda
Offline Send Email
Oct 26, 2007
6:17 pm
2055
Andy, I think the best way to accomplish what you're trying to do is to use AJAX. AJAX allows you to use JavaScript to issue an HTTP POST or GET without...
millerdw2003
Offline Send Email
Oct 26, 2007
6:17 pm
2056
... You write a script that calls itself. Here is a simple calculator example, but remember that it has to be run on a server. It uses cgi to send the entered...
kenshail2003
Offline Send Email
Oct 29, 2007
3:30 pm
2057
... #!/usr/bin/perl -w use strict; use CGI qw(:standard); our $q=new CGI; our ($firstNumber,$secondNumber); # This perl script calls itself and posts variables...
kenshail2003
Offline Send Email
Oct 29, 2007
3:30 pm
2058
Hi, Thank you both very much for you responses. I will try putting "target='blank'" in my form tag first since that is the easiest but I will definitely check...
Andy Schafer
lostgameparts
Offline Send Email
Oct 29, 2007
3:30 pm
2059
Hi, I know this isn't strictly a Perl problem but it is in a Perl script so I thought I would ask anyway. On my site I have a simple flat file database. Each...
Andy Schafer
lostgameparts
Offline Send Email
Nov 24, 2007
4:22 pm
2060
make cc -c -Wall -Wwrite-strings -O2 -march=i486 -mcpu=i686 -DVERSION=\"0.16\" -DXS_VERSION=\"0.16\" -fPIC "-I/usr/lib/perl5/5.8.7/i486-linux/CORE"...
nonapophthegm
Online Now Send Email
Jan 31, 2008
7:24 pm
2061
Hi, I am basically new to wbeservices using PERL. I have a perl script that I need to service enable and this service nneeds to be called by a non-PERL client....
ragus22
Offline
May 29, 2008
5:28 pm
2062
Hi All, Using GD::Graph::pie, I have created a pie chart. But, I am unable to add a legend to the chart. Is there any provision to add legend to a pie chart ? ...
srinivas reddy
reddysrinivas_k
Offline Send Email
Oct 20, 2009
6:36 pm
Messages 2033 - 2062 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help