0
votes
1answer
21 views

I installed a perl module via cpan. But how do i use it?

After lot's of issues I managed to get cpan to work in cygwin. I did: cpan[2]> i Log::Log4perl and it seemed to work. I.e. it downloaded something: cpan[2]> i Log::Log4perl Fetching with ...
0
votes
1answer
36 views

Changing the font size of terminal output in perl

How does one change the font size of terminal output created via the print command in perl? The output font color and emphasis (e.g., bold) can be changed by using functionality provided by the ...
0
votes
0answers
66 views

Perl cannot locate module in @INC

I am running Centos 6.4 and perl 5.10. I have short script which uses the DateTime module. However when I run my script I get the following error message telling me various modules cannot be located ...
1
vote
1answer
34 views

DBD::Pg::st execute failed: ERROR: syntax error at or near “$1”

Trying to set a value in PostgreSQL using Perl and DBI, and thus DBD::Pg. I'm getting an odd error. 2013-05-23 19:02:36.641139500 updating status to 0 2013-05-23 19:02:36.641410500 DBD::Pg::st ...
-1
votes
2answers
68 views

Simple Perl program to print the time to nano resolution to screen

If I run Date +%H:%M:%S.%N from a linux bash command-line it prints out the time to nanosecond resolution. I am trying to continuously print that to the screen but this perl program doesn't seem to ...
0
votes
0answers
46 views

how to escape asterisk/glob when sending command to linux host

i've written a script which takes the contents of a hostfile and a cmdlist, logs into each host in turn and executes each command in cmdfile then returns the output. a typical session might look like ...
1
vote
2answers
47 views

How to detect if my server is running centos or other from a perl script

I want to display some text in a script only if the Operating System is Centos . How can i do that in a perl script ?
0
votes
0answers
50 views

two subdirectories named 'sys' under /usr/lib64/perl5 [closed]

Anybody's got an idea why there are two subdirectories named 'sys' under /usr/lib64/perl5 ? Different inodes, but anyway... Here's the output (Fedora18): ls -li /usr/lib64/perl5/ [...] ...
1
vote
1answer
41 views

What is the smart way for start parallel tasks in forked proccess via perl, linux and anyevent?

I have an issue with AnyEvent::Utils::fork_call. I m using fork_call, then doing some work, and after that i should end my fork_call, and start new parallel task. I tried that: fork_call { # ...
0
votes
1answer
62 views

Recursively listing the contents of a tar/zip archive

I understand how to get contents of zip/tar files, for example: http://www.if-not-true-then-false.com/2010/list-tar-tar-gz-tar-bz2-contents/ But in my case: I want to get all contents of a zip ...
0
votes
1answer
56 views

Parsing the output of SGE's (qstat -j “*”) using AWK or Perl

I have the output from SGE qstat command that looks like this: http://dpaste.com/1177012/plain/ It is obtained with the following command: $ qstat -j "*" What I want to do is to parse the ...
1
vote
0answers
95 views

Joining MP3s “perfectly” [closed]

I have a bunch of small MP3 files that complement each other into a song. I want to join them into one big file. It seems that avconv (ffmpeg) does a good job: avconv -i "concat:1.mp3|2.mp3|3.mp3" ...
7
votes
1answer
105 views

Edit linux capabilities in Perl

In a C program, you can edit your capabilities with cap_set_proc from libcap. How can I achieve the same in a Perl program?
3
votes
2answers
71 views

Send TERM signal to child process spawned in another thread of parent process

I'm on Linux platform and using Perl. First of all I created a thread, and forked a child process in this new thread. When the parent in the new thread returned and joined to the main thread, I would ...
-1
votes
0answers
48 views

Have a server play a sound when it receives an email [closed]

There's a server sitting in my room, and I would like it to play a sound whenever I receive a specific email (let's just say, for example, the emails that notify me I have a new follower on twitter). ...
0
votes
1answer
52 views

Comparing and displaying hash values

I am able to print all of the lines from /etc/passwd by UID and username. I would like to compare the values of UID and display corresponding usernames by <150 and >150. this is my while loop ...
0
votes
2answers
62 views

How to print file content in parts to the screen?

I am trying to store command output into a file (that works fine) and then what I want to do, is to display the file content to the screen. My problem is that I want it to be displayed in parts (for ...
0
votes
3answers
101 views

Optimize shell script (bash) to impove performance

I have a bash script which I use to process a text file: #/bin/bash dos2unix sourcefile.txt cat sourcefile.txt | grep -v '\/' | grep -v '\-\-' | grep -v '#' | grep '[A-Za-z]\*' > ...
0
votes
2answers
41 views

Tab based split on lines misses empty columns - Perl

I have a tab separated text file. I read line by line and column by column. I make few changes in each column and write the line to a new file. When I read each column using split function of perl ...
-2
votes
0answers
23 views

read pm files present in linux machines from windows machines, through perl script [closed]

i need to grep for some pattern in perl files present in Linux machines from my windows command prompt. can this be possible ? if yes, how ? Thanks in advance.
2
votes
2answers
37 views

Perl Directory Finder doesn't work?

I have a script to find Directories and .tar.gz Files. For whatever reason (that's what I'm hoping you can help me with) my if ( -d $file ) doesn't return that it's a directory!!! My Script: # ...
0
votes
2answers
40 views

Glob is different value error opening a file and reading

sub open_files { my @files = @_; my @lines; foreach (@files){ print "$_\[1\]\n"; } foreach my $f (@files){ print "$f\[2\]\n"; open(my $fh,'<',$f) or ...
5
votes
1answer
65 views

Why does glob lstat matching entries?

Looking into behavior in this question, I was surprised to see that perl lstat()s every path matching a glob pattern: $ mkdir dir $ touch dir/{foo,bar,baz}.txt $ strace -e trace=lstat perl -E 'say ...
0
votes
2answers
69 views

Perl one liner + regular expression to match part of word

I write Perl one liner code in order to match IP address according to the following rule: match only the three first octets while the four octet must be valid 0-255 , additional to that number or "." ...
2
votes
3answers
88 views

Need to modify several XML files with Perl script in Linux env

I have several XML files named TC_Circle1, TC_Circle2, TC_Point1, etc in a directory and I want to use a script to update the start and stop dates in each file. The start and stop dates are inside ...
0
votes
2answers
47 views

Running awk on file, with regular expressions

I would like to find all occurrences of INPUT in a file, JUST INPUT. I have the following, but it finds everything with INPUT* awk '{for(i=1;i<=NF;i++){if($i~/^INPUT/){print $i}}}' I would like ...
1
vote
3answers
104 views

how to merge two files consistently line by line

I have two files (file1.txt & file2.txt ) , files are only examples . How to merge the two files , in order to create the file - merge_files.txt as example 3 I writing now ksh script , so merge ...
1
vote
2answers
90 views

Busy box, Run C, python or Perl programs

All I have is bourne shell and busy box. Is there any way to run a python script or compile a c program or any languages like perl .. like busybox python eatmemory.py 100M or busybox gcc ...
1
vote
2answers
47 views

Does file content fully exist in library files

I have just completed the refactoring of a long piece of code. My refactoring included breaking up the source code into many functions in many files at many folders. Now that I'm done, I want to ...
0
votes
2answers
77 views

perl + add warn massage in perl one liner code

I have perl one liner code that rename the names of files/directories code: find /tmp -name "*$NAME_THAT_WE_WANT_TO_CHANGE*" -exec /tmp/rename.pl ...
0
votes
1answer
36 views

Error: Failed dependencies: perl(Date::Parse)

I have two different perl versions installed on my setup. One is default linux perl and other one is VRTSperl. I am trying to install an rpm package and it is giving following error error: Failed ...
0
votes
0answers
30 views

how do i make my perl scripts act like normal programs on linux [migrated]

Perl programs I've written earlier were simple text processing scripts, for executing them I use to use terminal. Now I am learning GUI programming(I want to make some games as a hobby), using Tcl/TK ...
0
votes
1answer
42 views

Perl script works fine on my computer, not on remote server

I have a perl script which takes some fields from an input text file and transforms them to generate a more useful (for me) text file. When I run it on my Mac (with a very small file made of a few ...
1
vote
1answer
42 views

ftp download completes, but unzip says otherwise

I ran into a bizzarre error on linux: I download a file using Net::FTP. Once get() method returns, I call the system unzip function: system("unzip -j $file"); the majority of the time, it ...
1
vote
3answers
69 views

how to dump output of a perl script on linux into a log file with file name as timestamp

I have a perl script example.pl that I run on linux box. I need to capture the output from the execution of the perl script and timestamp its name. I know the output redirection method but I am ...
0
votes
1answer
83 views

Can't locate CPAN.pm in @INC (@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5

I tried to install some modules to a new server (fedora core 18) but I'm betting this error: Can't locate CPAN.pm in @INC (@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5 ...
0
votes
4answers
70 views

perl + match exactly IP ADDRESS but ignore spaces and TABS

the following perl liner code will match exactly the IP address perl -ne 'BEGIN{$ip=shift(@ARGV);} print if /^\Q$ip\E$/;' "$IP_ADDRESS" $FILE the problem is that we cant match by the ...
0
votes
3answers
77 views

linux + how to delete only the matched number from line

How to delete only if number is full matched I wrote simple sed command ,the example below by sed , my target is to delete the number "1" from the list $NUMBERS what I need to add to my sed ...
1
vote
2answers
118 views

how to create add user to linux machine with perl script

I've searched for some hint about this one but I'm clueless I'm trying to add a user to a linux machine with perl code : my $md5password = `openssl passwd -1 $password1`; system("useradd -s ...
-5
votes
1answer
66 views

Sys:Info perl module to get memory and space information [closed]

Does any one have idea about how to use sysinfo to get info like swap memory , memory used , available memory , load average , total physical memory , total cache memory. I am new to perl. thanks in ...
0
votes
2answers
27 views

Assigning a system command to an array in Perl

I'm attempting to assign the Linux system command top -n1 to an array and then eliminate the first seven lines of the text that is written to a text file. When I go to print elements from my array, I ...
0
votes
3answers
132 views

Perl script execution keeps getting killed - running out of memory

I am trying to execute a perl script that processes a small 12 x 2 text file (approx. 260 bytes) and a large .bedgraph file (at least 1.3 MB in size). From these two files, the script outputs a new ...
-4
votes
2answers
63 views

Script for getting memory information

#! usr/bin/perl sub memoryInfo { print "Inside memory info \n"; @memoryInfo = qx(free -m); foreach (@memoryInfo) { print "$_\n"; } } ...
2
votes
1answer
57 views

How to use abstract names of unix domain sockets with fcgi in Perl in Linux?

In Linux, in Perl, using the FCGI module, using the Open Socket function, is it possible to create an unix domain sockets using abstract names? I tried to create a socket starting with a null ...
1
vote
1answer
87 views

Run Shell command in Perl

I can run some Shell Linux commands in Perl (for example create a folder). But I can't execute followed command: echo 'mypassword' | gpg --passphrase-fd 0 --output outfile --decrypt inputfile I add ...
1
vote
1answer
178 views

how to install parallel-forkmanager in perl

I am tiring to run multiple jobs in parallel by using perl script which use parallel:ForkManager. #!/usr/bin/perl -w use Parallel::ForkManager; my @make_obj = qw( mode1_testlist mode1_testlist1 ...
0
votes
0answers
44 views

Perl-MySQL database password input; GENE-counter

First time poster. I'm extremely new to Perl / MySQL / Linux (Ubuntu), so there is every chance that I'm doing something ridiculous. Any help would be greatly appreciated. If i'm asking in the wrong ...
1
vote
1answer
126 views

Using python in windows to run a remote perl script on linux

I need to connect from a Windows machine to a remote Linux server and execute a Perl script. I've tried using command = "perl /usr/local/xfer/file.pl -ssh root@"+hostname+" -pw password -batch" pid = ...
-4
votes
1answer
95 views

script remote desktop Linux from Windows [closed]

My problem is very sophisticated so I hope someone someday will answer to this question ;) I have a windows machine and a Linux server (i used the linux server with remote desktop from my windows ...
1
vote
0answers
88 views

SEGMENTATION FAULT in PERL SCRIPT on unix in multi-process/threads using pipes

I'm new to the process of Multi-process programming in perl. I am trying to write a multi-threaded multi-process based application which is giving me "SEGMENTATION FAULT". The program is simple. First ...

1 2 3 4 5 16