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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2019 - 2048 of 2061   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2019
Hi, I want to leanr Perl, can anyone tell me where can i get resources for the same. Thanks a lot Sujay...
sujaymallesh
Offline
Aug 1, 2007
5:41 pm
2020
I've installed Perl on my computer (which is not a server). I can run Perl at DOS prompt only. When I use IE or Firefox to access Perl scripts, the browsers...
youwenjia
Offline
Aug 1, 2007
8:35 pm
2021
... sujaymallesh> I want to leanr Perl, can anyone tell me where can i get resources for sujaymallesh> the same. A bit of googling should have brought you to...
merlyn@...
merlynstoneh...
Online Now Send Email
Aug 1, 2007
8:36 pm
2022
... 1) You said it's not a server so I'm assuming Apache is nowhere to be found. 2) I had that problem with my scripts even with Apache installed. I had to...
d_s_9_dax
Offline
Aug 3, 2007
5:33 pm
2023
... Yes. Install a web server on your machine and configure it to run your CGIs. -- Just my 0.00000002 million dollars worth, Shawn "For the things we have to...
Mr. Shawn H. Corey
shawnhcorey
Offline Send Email
Aug 3, 2007
5:34 pm
2024
What exactly are you trying to do? Do you want to embedd Perl in HTML? -Pavan ... From: youwenjia <no_reply@yahoogroups.com> To: Perl_Official@yahoogroups.com ...
Pavan Kandepet
kandepet_pavan
Offline Send Email
Aug 3, 2007
5:34 pm
2025
Progress. Now I've got Apache running too locally with Windows XP Home. It shows web pages successfully, but responds to .pl and .cgi calls with "There is an...
youwenjia
Offline
Aug 7, 2007
5:15 am
2026
... server). I can run ... I assume from the above that you have installed it on a windoze machine (2000 or XP) If that is correct and you have not installed...
kenshail2003
Offline Send Email
Aug 7, 2007
5:15 am
2027
Hi can some help me in writing a perl script to access remote registry. Which modules required to installed etc. Thanks, Vittal jadhav ... Why delete messages?...
vittal jadhav
vittalmj
Offline Send Email
Aug 7, 2007
6:00 pm
2028
Does any one know how to check if password exists for a windows user through perl function. UserGetAttributes doesn't work..it is returning null password...
ritu_kal2003
Offline Send Email
Aug 8, 2007
6:45 pm
2029
hi, i am trying this statement but it is not executing i.e. killing process $force ="-9"; print "Kill $force $pid[$_]\n"; Thanks and Regards Avinash ... Get...
avinash k
avik1612
Offline Send Email
Aug 10, 2007
12:02 am
2030
... process ... All your script would do is print out a Kill message. It will not execute the Kill command. In fact, I am not aware of a "Kill" command. If...
rob_wilson_98
Online Now
Aug 10, 2007
2:13 pm
2031
try this `kill $force $pid[$_]`; ... -- Kind Regards Dhanapalan.C " If there is a way, I will find one, If there is none,I will make one.... !!! " [Non-text...
dp
dhana_foru
Offline Send Email
Aug 10, 2007
6:19 pm
2032
hi, i am using the unix opearting system. I have attached the code It is still not able to kill the process Thanks in advance Avinash ... process ... All your...
avinash k
avik1612
Offline Send Email
Aug 13, 2007
3:39 pm
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
Messages 2019 - 2048 of 2061   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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