Search Results

1
vote
5answers
1k views

How can I convert these strings to a hash in Perl?

I wish to convert a single string with multiple delimiters into a key=>value hash structure. Is there a simple way to accomplish this? My current implementation is: sub readConfigFi …
2
votes
2answers
478 views

How can I catch and handle a signal in Perl?

Is there any way to trap an error and exit gracefully from Perl? I am working on a script which might fail due to a SIG event from the OS or other applications running on my server. I wish to trap …
5
votes
4answers
4k views

How can I find a substring within a string using Perl?

I have a string from which I wish to extract a single word, but with a numerical appended to it, which might be different in each line: This is string1 this is string This is string …
2
votes
6answers
350 views

How do I replace a set of words in a file with another set in Perl?

My requirement is to replace a set of words in a given text file with a second set of words, which might be given from the command line or another file. Wanting to use Perl to do this, as the rest …
0
votes
3answers
169 views

Compute numerical values from a space separated text file, within a range of lines

I have a file with the following values: for 3 threads: Average time taken for API1 is: 19097.7 nanoseconds. Average time taken for API2 is: 19173.1 nanoseconds. Average time taken …
4
votes
1answer
150 views

How can I write the same text to two separate file handles using Perl?

I need to output the same text to two different files (it is a application requirement, which I am testing). Now, I do not wish to open two file handles, write two lines to each, then close them a …
1
vote
3answers
176 views

Read content from file and find full file-name on disk

My problem is that I have a bunch of file names without the version appended (version keeps changing everytime). The file names are in a file in a particular sequence and I need to get the latest v …
0
votes
5answers
169 views

Parsing comma separated lines and calculating sum

So basically my problem can be written in pseudo-code as follows: split the line by = using value before =, find the next line check this the value after = matches previous if not, …
2
votes
3answers
224 views

How can I use Expect to enter a password for a Perl script?

I wish to automatically enter a password while running an install script. I have invoked the install script using the backticks in Perl. Now my issue is how do I enter that password using exp …
-3
votes
4answers
180 views

How do I fork a new process and get back its PID in Perl?

My issue is related to using fork() within Perl code. I wish to fork a new process and capture its PID and return it back to the callee program. Is there some command in Perl which wou …