Tagged Questions
1
vote
2answers
78 views
perl parsing and assigning multiple values to hash key using array
I have files that I'm trying to parse and build a hash and lookup from a third file. File format :
File 1:
ID2
ID4
File 2:
x1 y1 z1 ID1
x2 y2 z2 ID2
x3 y3 z3 ID2
x4 y4 z4 ID4
File 3:
a1 b1
...
0
votes
1answer
18 views
BioPerl with clustalw - outputting file
I have a perl script to automate many multiple alignments (I'm making the script first with only one file and one multiple alignment - big one though. I can then modify for multiple files) and I want ...
2
votes
2answers
48 views
Grabbing Chunks of Data from File in Perl
I am scanning a error log for the keyword "warning." When I find it, there is a particular case of warning that will end information relevant to the warning with only a newline character. What I want ...
3
votes
1answer
53 views
can't use an undefined value as a symbol perl
I'm trying to write in file some value taken from an array. But I'm having some error ''Can't use an undefined variables as a symbol reference at... line 81:
foreach $k (sort keys %{$value2}){
...
1
vote
2answers
41 views
PERL POE ReadWrite Wheel File IO Example?
I'm having trouble finding an example of how to create and write to a file using a POE Wheel or whatever async process. I want to be able to write large files in a non blocking way. I'm looking for ...
1
vote
1answer
71 views
opening file in perl gives errors?
I am writing a perl script which reads a text file (which contains absolute paths of many files one below the other), calculates the file names from abs path & then appends all file names ...
-1
votes
4answers
55 views
How to OR file names in open command
I want to pass two file names in a file open command, so that if one file doesn't exist, it should open another file.
Is there any way to do it in a single open command? Below is my code:
open FILE, ...
1
vote
1answer
38 views
What is the file descriptor that the terminal uses to talk to an interactive program?
echo "abc" | less
less receives the 4 bytes "a", "b", "c", "\x0A" over STDIN, and displays "abc" to the user in its own special way (with the alternate screen mode, etc.).
Then user types "n" at ...
1
vote
2answers
73 views
Is it better to write to file in small chunks or everything at once? [closed]
I have to write multiple lines on a file with Perl, which are the pros or the cons of writing in small chunks line by line versus saving everything up and accessing the filehandle only once to write ...
1
vote
2answers
93 views
Writing contents of an array to txt file in perl
The output I'm trying to achieve would look like this:
Name age gpa
for every element in each array, however when I write the contents of the array to a file it over writes somewhere and is ...
11
votes
3answers
153 views
How to ignore read-only files with `perl -i`?
Perl’s -i switch appears to modify read-only files:
$ echo 'foobar' > tmp.txt
$ chmod -w tmp.txt
$ perl -pi -w -e 's/foobar/FOOBAR/' tmp.txt
$ cat tmp.txt
FOOBAR
This is unexpected, as the ...
3
votes
2answers
80 views
Reading a file that might be truncated in Perl
I'm using Perl to read through a log file that might be truncated at any point. If this happens, I want to start reading the file at the beginning again, but the default Perl behaviour seems to be to ...
0
votes
5answers
95 views
Why is my filesize the same after adding further data?
Having some trouble with Perl (I am brand new at it). I have one .txt file in the same directory. I'm planning to copy the file, print it to stdout, add more text to the copy, and compare file sizes. ...
0
votes
2answers
91 views
Issues with Perl script and date concatenation removal/file rename
So, I am trying to rename excel files like "test_09182009.xlsx" to "test.xlsx" and would like to overwrite the file if it already exists. This was working for me on my local machine or so I thought ...
1
vote
1answer
62 views
Reusing objects created in call to script
I'm looking to split certain lines of text from a file into an object and those objects added to an array each element being one line from the input file. From there I would need the script that ...
1
vote
2answers
66 views
Compilation Error: Requires Explicit Package Name
I am just starting out with Perl and I am writing a program that reads a file and puts the morse code from that file into plain text in another file. I am getting this error and I cannot figure out ...
1
vote
2answers
105 views
Perl - Error caused by uninitialized value in print
I am writing a simple program that reads morse code from a file and converts it to plain text. I am getting some crazy errors though. I am not very familiar with perl and I am having to run it from ...
1
vote
3answers
249 views
Unable to open text file in perl
I am fetching some log files (which are in txt format) from another server and trying to parse them using my perl script. The logs are being fetched correctly after which I set permissions to 777 for ...
2
votes
3answers
142 views
How Can I Store a File Handle in a Perl Object and how can I access the result?
I wanted to store a file handle in a Perl Object. Here is how I went about it.
sub openFiles {
my $self = shift;
open (my $itemsFile, "<", "items.txt") or die $!;
open (my ...
1
vote
1answer
57 views
How many open-backends does IO::File use?
Is the built-in open function, the basic Perl open operator and the three-argument open operator` described in IO::File#METHODS all the same function?
0
votes
3answers
95 views
How do you list all files without a suffix using Perl?
I want to add a suffix to all the files without a suffix in a directory with mixed content.
I only want to fetch files without a suffix
Then I want to add a suffix to them (like, say, .txt or .html)
...
9
votes
2answers
231 views
Atomic open of non-existing file in Perl
I want to write something to a file which name is in variable $filename.
I don't want to overwrite it, so I check first if it exists and then open it:
#stage1
if(-e $filename)
{
print "file ...
3
votes
4answers
111 views
'merging' 2 files into a third using perl
I am reviewing for a test and I can't seem to get this example to code out right.
Problem: Write a perl script, called ileaf, which will linterleave the lines of a file with those of another file ...
2
votes
3answers
305 views
Insert a new line of text before a match of text
In a text file, I'd like to insert a NEW line of text before each and every match of another line of text, using perl.
Example - my file is:
holiday
april
icecream: sunday
jujubee
carefree
icecream: ...
2
votes
3answers
109 views
How to output binary files in Perl?
I want to be able to output 0x41, and have it show up as A.
This is what I have tried so far:
my $out;
open $out, ">file.txt" or die $!;
binmode $out;
print $out 0x41;
close $out;
It outputs 65 ...
0
votes
2answers
198 views
Sort 2nd Field Descending from text file perl
I have a text file, tab delimited that looks like this in the format, name and age:
chris 19
bobby 29
doofus 67
I wanted to pull in the text file, and then sort via the second field. I ...
0
votes
2answers
79 views
Odd file handling in perl on OS X
I'm very much a perl newbie, so bear with me.
I was looking for a way to recurse through folders in OS X and came across this solution: How to traverse all the files in a directory...
I modified ...
1
vote
1answer
107 views
How do I output a PDF file using Perl's Mason?
I have to write taking a code from the .pdf file, and copy it to anyother pdf file. The code i have written to open the file is given as under :
<%args>
$fullname
$filename
</%args>
...
1
vote
3answers
134 views
Regular Expression pattern storing in array
I am new to perl and want to read a file in which IP are stored , i want to grep these IP and store in array , i am able to write the regex for this but out of three ips it always stores last ip of ...
2
votes
5answers
94 views
How can I convert this output in this table format with Perl?
I have this output data:
10dvex1_miRNA_ce.out.data|3331
10dvex1_misc_RNA_ce.out.data|0
10dvex1_rRNA_ce.out.data|60
10dvex1_snoRNA_ce.out.data|895
10dvex1_snRNA_ce.out.data|2127
...
0
votes
3answers
1k views
Perl script to merge multiple files line by line
Can anyone please help me with writing a Perl script which can take as input 5 text files and create a new text file with merging each row of all 5 files.
Should this be done by opening 5 read ...
-1
votes
2answers
220 views
Perl Regex match works, but replace does not
I have put together a Perl script to go through a directory and match various keys in the source and output the results to a text file. The match operation works well, however the end goal is to ...
0
votes
2answers
190 views
How to get file last modified time with Perl 5.004 and no modules
I have a standalone version of perl for Windows (5.004) that does not include any modules. I want to run a script to check the last modified time of several files.
I could use File::stat but that ...
3
votes
2answers
139 views
What is the difference between “while(<FH>)” and “if(<FH>)” in perl?
This works :-
while (<CONF>) {
print $_;
}
but this doesn't :-
if (<CONF>) {
print $_;
}
and gives an error about uninitialized values. What am I missing here?
0
votes
1answer
56 views
Replacing a line in a file replaces the line under it. Perl
I have a file handler to a file and I'm looking for matches in the lines and replacing the match with a new line. Replacing the lines happen in a subroutine.
sub replace{
seek(FILE,0,0);
...
1
vote
0answers
126 views
perl: Contents of file removed after open()ing file in read only (“<”) mode [closed]
I am having an issue where a File I open in read only mode keeps becoming 'blank' after processing. The file I am opening is a 'template' file; I use its contents to create a new temporary file that ...
-9
votes
3answers
116 views
How to delete the string from txt file? [closed]
I need to delete the string $number ='441157070315'; from txt file and then rewrite the file.
Example of txt file:
441157070314
441157070315
441157070316
441157070317
441157070318
Any ...
1
vote
4answers
95 views
Search file for specific lines and store them
This is my text file...i want to search specific data and store it....
i want to search output demand history and then print it search all *output field and save its value=234 only and print ...
0
votes
2answers
84 views
how to process data from file using hashes in perl
#input data
11000000, 1637, -7.8737, -20.15022
11000001, 1634, -710.377, -20.150137
11000002, 1639, -709.87366, -20.150133
11000003, 1631, ...
2
votes
3answers
253 views
Perl read file error
I have to read a big (BIG) file in memory, line by line, using perl.
In case of some error, function open() does return false and $! is set to the system error.
But, if I get some errors reading the ...
2
votes
1answer
239 views
Perl writing to file stream causing unexpected SIGPIPE error
I have the following perl code which tries to write a string to a newly created file:
open(OUT, ">$file") or die "file out error!\n";
print OUT $string;
Normally, this code works fine. If we do ...
3
votes
2answers
181 views
Set the line to be read in Perl IO::File
How can I change the position of the pointer in a file handle in terms of line number (not bytes)?
I want to set the first line to beginning reading a file. What is the proper way to do this?
3
votes
2answers
786 views
No such file or directory at ./script line 17
Exact error:
$ ./script.pl file.txt
Can't open file.txt: No such file or directory at ./script.pl line 17.
Use of uninitialized value in chomp at ./script.pl line 17.
Username: Password:
I'm ...
-2
votes
2answers
209 views
Why is piping my script's output into the shell's dir command not working as I expected?
I am piping the directory command output to file handle, followed by the print to the file handle. I wish to append some text to the dir/ls output.
open (FH, "| dir") or die "$OS_ERROR";
print FH ...
0
votes
2answers
182 views
Perl file copy duplicating output
I'm attempting to write a menu driven modular perl script that will capture user input and automate the network configuration process. This script has to be able to install required Arch packages, ...
-3
votes
5answers
609 views
Populate hash on the fly: keys in one file and values in another
So I have a text file with the following line:
123456789
But then I have a second file:
987654321
So how can I make the first file's contents the keys in a hash, and the second file's ...
1
vote
1answer
345 views
check a given string match one of the prefixes in a file
Requirements: Given a file with a list of prefixes, one per line, check a given package name and return true if it matches one of the prefix. This is a subroutine of a project which involves a lot of ...
-2
votes
4answers
149 views
Perl - file slurping issue
I'm running the following code:
open my $fh, "<", $file;
$/ = undef;
my $report = <$fh>;
$/ = "\n";
close $fh;
print("$report\n\n");
$file refers to a text file that looks like this:
a ...
2
votes
1answer
163 views
redirecting stderr influences output of “open FH, '-|', $command”. Why and how to prevent?
I want to get the size of the current terminal, i.e. the terminal my perl script is running in. The following should do the job:
#!/usr/bin/perl
sub getTerminalSize {
my @dimensions = (24,80);
...
8
votes
2answers
317 views
In Perl, how can I can check if an encoding specified in a string is valid?
Say, I have a sub that receives two arguments: An encoding specification, and a file path. The sub then uses that information to open a file for reading as shown below, stripped down to its ...



