Tagged Questions
0
votes
1answer
35 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
2answers
47 views
Sort CSV data by multiple columns
Input File
1,A,SDF,24,55,55
2,T,AAS,22,12,32
3,TR,SS,14,19,69
4,DD,DD,14,59,39
5,SW,DD,14,39,59
6,SB,DS,12,26,126
7,QQ,SWD,12,19,199
8,QA,DD,12,17,167
9,AA,QQ,10,9,49
Desired Output
...
0
votes
2answers
35 views
Perl - DBI and .pgpass
I can successfully create a connection to a Postgres db using the following:
my $settings = {
host => 'myhost',
db => 'mydb',
user => 'myuser',
passwd => 'mypasswd'
};
...
2
votes
3answers
44 views
appending a line after there is match for 2 pattern in Unix shell scripting
I have a file like
nithin shetty
sachin shetty
pavan shetty
In this file i want to append "HELLO THIS IS ME",next line to the pattern "shetty". But the condition is that if the line matches for ...
2
votes
2answers
33 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:
# ...
1
vote
2answers
32 views
Pattern matching on Oozie logs
Oozie Command Used
oozie jobs -oozie http://localhost:11000/oozie -localtime | grep "2013-05-08" > Input.txt
Oozie log (Input.txt)
61-oozie DProSUCCEEDED chronicles users ...
0
votes
2answers
46 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 ...
-2
votes
2answers
76 views
Mass rename JPG files using command line or perl?
I have 519 JPG files in a folder that I need to massively rename. In the file newnames.txt I have a list of the 519 new file names. Is there a way through command line or perl to run through that ...
1
vote
2answers
43 views
Load pictures from directory into array
I'd like to load all pictures from directory and save them into array.
@files = `ls $ARGV[0] | grep -i -E jpe?g|gif|png$`;
This line gives me an error: Final $ should be \$ or $name
@files = `ls ...
-5
votes
1answer
63 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 ...
-1
votes
1answer
29 views
Copy multiple columns from csv to other and save [closed]
I have a large delimited file, which need to be convertd into multiple delimited files based on column headers.
Suppose I have H1, H2, H3, H4, H5, H6 as column headers, I want to extract H2, H6, H4 ...
2
votes
0answers
50 views
How to run a Perl script in a Unix environment from Windows? [migrated]
A little background:
I am trying to interact with data I have saved in Perl files using a program I wrote in C using the Win32 API. The C program is in Windows and the Perl files are accessed ...
-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";
}
}
...
0
votes
1answer
76 views
Scope of system calls using Perl script on apache/unix
I have an example and question regarding unix/apache session scope. Here is the test script I am using:
#! /usr/bin/perl -I/gcne/etc
$pid = $$;
system("mkdir -p /gcne/var/nick/hello.$pid");
chdir ...
1
vote
5answers
59 views
Join broken lines with perl/awk
I have a huge file with sql broken statements like:
PP3697HB @@@@0
<<<<<<Record has been deleted as per PP3697HB>>>>>>
FROM sys.xtab_ref rc,sys.xtab_sys f,sys.domp ...
-3
votes
0answers
56 views
perl get CPU,memory and disk details [closed]
This is my assignment : get CPU,memory and disk details in perl.
i believe du and free commands could be used in a perl(.pl) file. But i am finding it hard to do that. I know this may be easy. I am ...
0
votes
1answer
28 views
How to detect if cronned script is stuck
I have a few Perl scripts on a Solaris SunOS system which basically connect to other nodes on the network and fetch/process command logs. They run correctly 99% of the time when run manually, but ...
1
vote
2answers
53 views
Convert adjacency matrix into pairwise table format with Perl
I have a data that looks like this (adjacency matrix):
foo bar 0.14 qux 0.2
bar foo 0.14 qux 0.4
qux foo 0.2 bar 0.4
What I want to do is to convert them into pairwise table:
foo bar 0.14
foo ...
0
votes
2answers
88 views
How to save the output file in a directory and print the name of the output file?
I am parsing a file from which I then create multiple output files. I would like to save the output file(s) in a special directory in the same folder the perl script was executed from. If the ...
0
votes
1answer
58 views
Term::ReadKey, non-blocking read in raw mode: Detect EOF?
When I pipe stuff into my program, it does not seem to get any character like 0x4 to indicate EOF.
$ echo "abc" | map 'cat'
saw a: \x61
saw b: \x62
saw c: \x63
saw
: \x0A
zzzbc
^C
I have to press ...
1
vote
0answers
88 views
Make sed not buffer by lines
I'm not trying to prevent sed from block-buffering! I am looking to get it to not even line-buffer.
I am not sure if this is even possible at all.
Basically there is a big difference between the ...
0
votes
1answer
66 views
Regular expression incremental parsing
Are there languages or tools that support the parsing of regexes on a character-by-character basis?
I think this may be equivalent to "regexes on streams" which is something that seems to be one of ...
0
votes
2answers
57 views
Split a file in several output
I am trying to divide a big file into different files containing single information for each variable inside the file.
my input file look like this:
#CHROM POS ID REF ALT QUAL ...
0
votes
1answer
71 views
Command to compare and sort 2 files with different word counts
Hello I have 2 files with jumbled up content. File1 might have some 100 strings one below the other and file 2 has 200 for instance.
Something like
File1 a-->001 b-->002 c-->003 d-->004 e-->005
...
3
votes
4answers
75 views
Perl, how do I create a pipe to my exec'd child?
I am trying to pass data from my perl script to my c program using a pipe (uni-directional).
I need to find a way to to do this without messing with the child programs STDIN or STDOUT, so I try ...
0
votes
3answers
30 views
Howto use WWW::Mechanize to access pages split by drop-down list
I have list of genes to download from the following links.
the problem that it's separated into 60 pages, under the drop-down list.
...
0
votes
2answers
59 views
How to download HTML encoded with PHP/JavaScript content using WGET or Perl
I have a URL which I want to download and parse:
http://diana.cslab.ece.ntua.gr/micro-CDS/index.php?r=search/results_mature&mir=hsa-miR-3131&kwd=MIMAT0014996
The problem is when I download ...
0
votes
1answer
40 views
Compare and insert count number of elements in columns into table in perl
I'm working in with two large data sets (300 x 500,000) and I've got a matrix with 0,1, 2 and NA values in both data, and I would like to compare these files and count the number are matching in both ...
1
vote
1answer
75 views
Number of different lines in each file - Compare all files inside 2 directories
I have 2 directories dir1 and dir2 with thousand of files. I have a perl script to compare these two and print the difference in a different file.
I am using the diff my $diff = diff -y ...
1
vote
1answer
36 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
0answers
38 views
Automate the restore process for cassandra
I have got 100 columnfamilies in 1 keyspace and i have got the backup (snapshot) of them and i want to restore from the backup to the new cassandra cluster. The below link says i need to delete the ...
2
votes
1answer
50 views
Perl uninitialized warnings
I've got my program keymap (it is not yet actually mapping any keys yet and is currently only printing out what it sees in hex) here:
#!/usr/bin/env perl
use strict;
use warnings;
use ...
0
votes
2answers
77 views
Why does this perl program not print anything out?
#!/usr/bin/env perl
use Term::ReadKey;
ReadMode 4;
END {
ReadMode 0; # Reset tty mode before exiting
}
while (<>) {
$key = ReadKey(0);
$key == "\x04" and last; # Ctrl+D breaks the ...
0
votes
1answer
38 views
Pattern - Leave 1st instance of 1st column and replace others
Input :
Process1 |5f|03/29/13 15:32:59
Process1 |6f|03/29/13 17:59:03
Pro cess1 |s7|03/29/13 17:59:05
Pro cess1 |1234|03/29/13 20:33:43
Pro cess1 |L|03/29/13 20:33:54
A Pro ...
2
votes
1answer
65 views
Not able to see the Perl output executing from Java class
I am using a Java class to execute a Perl script on a Linux box. The .class is being created successfully.
But when I execute the class, it says exit code successful as sop, but I'm not able to see ...
0
votes
1answer
78 views
Why does strftime uppercase flag '^' not work?
I have the following command $(perl -e 'use POSIX;print strftime "%d-%^b-%Y",localtime time-86400;') which works on Red Hat Linux box, but not on a Sun Solaris 9 box.
Question 1: From what I read ...
0
votes
2answers
79 views
Perl RegEx error
I am currently trying to create a log parser that takes from an input file (a .log) a series of ping reports in the following format: (64 bytes from 194.12.224.34: icmp_seq=1 ttl=47 time=66.7 ms) and ...
1
vote
4answers
94 views
UNIX: Pattern match and sort
Input
1 DX
ADA
4 O1
3 I1
C1
2 LA
FTAS
TT66
Expected Output
1 DX
ADA
2 LA
FTAS
TT66
3 I1
C1
4 O1
Command
sort -n Input
I tried sorting the ...
0
votes
2answers
61 views
Get names of all the directories with similar naming pattern in Perl
I have a directory "logs" which contains sub-directories as "A1", "A2", "A3", "B1", "B2", "B3".
I want to write a perl code that search all the sub directories with name pattern as "A", i.e. all the ...
3
votes
1answer
41 views
perl multiple sig handlers pointing to one subroutine
I am brand new to perl and trying to add functionality to my scripts to catch both keyboard interrupts and term signals if thrown, then issue a OS command to handle. Also need to issue the same OS ...
2
votes
3answers
97 views
directory was detected as file in perl
I tried to use this condition (-d $var) in a loop to check how many child directories on the given directory but some folders were detected as a file instead. What happened to the condition that ...
0
votes
2answers
36 views
Capturing output from a shell command without [also] sending its output to stdout
I am writing a Perl program to get the modified time of a particular file. I have tried the following scenarios:
$time = system("stat -c %y temp.txt") --> this sets $time to "0" and writes ...
0
votes
4answers
42 views
How to match an integer after finding a keyword?
I have a text file content as below:
Starting log...
Sample at 10000000
Mode is set to 0
0007F43: CHANGE DETECTED at 290313 line 0 from 00 to 04
0007F46: Mismatched at 290316 line 0
...
0
votes
3answers
46 views
Piping Perl Commands?
I'm currently trying to take my program and have it take user input, usually a text file then call an external script to count the words. The script I'm working on is essentially a "middle man" and ...
2
votes
5answers
230 views
Turning multiple lines into one line with comma separated (Perl/Sed/AWK)
I have the following data in multiple lines:
foo
bar
qux
zuu
sdf
sdfasdf
What I want to do is to convert them with one line and comma separated:
foo,bar,qux,zuu,sdf,sdfasdf
What's the best unix ...
0
votes
2answers
79 views
Unable to continue perform perl script after ssh to another unix domain
Encounter a question here whereby need help from you guys
I am writing a perl script that will be executed in a UNIX machine. In that script, I will perform an operation of 'ssh' to port over to ...
1
vote
1answer
88 views
Perl: Is it better to clobber a file or remove it and open a new one?
For example,
#!/usr/bin/perl
open FILE1, '>out/existing_file1.txt';
open FILE2, '>out/existing_file2.txt';
open FILE3, '>out/existing_file3.txt';
versus
#!/usr/bin/perl
if (-d out) {
...
-2
votes
3answers
99 views
How to concatenate lines that match a pattern?
I have a huge file where most lines are long, but there are a few lines that are just a few words:
Here is a long sentence.
This
is
a
short
line.
Here is a long sentence.
Here is a long sentence.
...
0
votes
4answers
46 views
How do I remove a specific area of element from an array
I'd like to remove a specific range of element form my array.
I have a txt file:
Rbody ...
333
444
555
666
END
Shell ...
Node ...
Rbody ...
333
444
555
666
END
What I would like to do is to ...
1
vote
4answers
70 views
Unix commands in Perl?
I'm very new to Perl, and I would like to make a program that creates a directory and moves a file into that directory using the Unix command like:
mkdir test
Which I know would make a directory ...