0
votes
3answers
41 views

Perl Directory Walking issue - Can't go back up more than 1 directory properly

First off, I don't have the ability to use File::Find. So I have my script to walk through directories and find a certain type of file. But if I go more than one sub-directory deep, my script ...
0
votes
0answers
32 views

trying to send messages from PERL to my email

I have a PERL script running on a mac that looks as follows: use strict; use warnings; use MIME::Lite::TT; # The parameters that will change with every experiment my %params; print "Initiating ...
-1
votes
2answers
47 views

Perl - Global variables available in all included scripts and modules?

So lets say I have a main.pl script and in that script I need to declare some variables (any kind of variable constant or normal) and those variables need to be available through all scripts and ...
1
vote
0answers
40 views

Changing version of assemblyInfo file does not work

I have a batch file which changes the version of AssemblyInfo cs file in order to update the version of the output dll. my script uses a perl script and includes those lines: call ...
-2
votes
0answers
43 views

Need a perl script to upload files in Bugzilla [closed]

I am New in perl script and making a scripts to upload files as an attachment in Bugzilla. I dont know how I can use Bugzilla modules Attachment.pm. Please help me if you any idea or perl scripts to ...
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
1answer
51 views

How Can I trigger a Jenkins build/job via an external perl script?

I aiming to write a perl script in Unix env which triggers a Jenkins build/job by passing the URL for the jenkins master and other parameters. How could this be done? Here are some detailed ...
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 ...
-4
votes
1answer
91 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 ...
0
votes
1answer
79 views

perl script without using DBI

I have to make a perl script populate a database in PostgreSQL without using DBI or any sort of database interface model. I am a beginner to scripting so naturally, I'v been stuck on this for quite a ...
0
votes
1answer
59 views

piping insert commands into psql tool

I need to create a perl script that takes in 2 parameters (int runid and int iters) which will then populate a table in the postgresql database by inserting a random number with the associated runid ...
0
votes
1answer
82 views

Script to check if Ports are running

I need help in order to check if two local ports are running in my box and if that is the case open a port. For Example: DB2 Port : 50001 MQ Port: 1414 If both are open, Open Port 45 for listening ...
0
votes
3answers
185 views

Perl script to compare file contents of dirA with file contents of dirB and output the difference in a separate file

I am just a beginner at perl and I need help with the following. DirA and DirB have files f1 ,f2 ,f3 ,f4, f5 (not necessarily 5 in number). I need to compare the contents of f1 in DirA with contents ...
-1
votes
2answers
62 views

PERL script on linux and not windows - opening code

I have a shop cart and had it all installed. It works fine, I have had zero problems. I am in the process of moving away from windows hosting space to a linux/LAMP - I have read somewhere at the top ...
0
votes
1answer
139 views

Windows batch script to provide user input to Perl script

I'm running a Perl script that waits for user input. How can I get a batch file to run the script, and provide the input? I can't modify the Perl source code to accept command line arguments. Here's ...
1
vote
1answer
63 views

Writing script that runs on Windows and Mac

I need to write a small script that renames some files in a directory. This script needs to be run on Mac and Windows. What is the best scripting language for this? I want to write something that ...
2
votes
2answers
67 views

Perl - Dynamic/relative File Path - Website

I am building a website using perl etc and i am trying to open a file and print the contents of it on the site however i can't seem to make it work when using a relative file path... # Load our ...
0
votes
1answer
72 views

Script that collect website in httpd.conf and get the size of the folder

enter code hereWhat I want to do it's a script that will collect the website configured in my httpd.conf. Get the DoccumentRoot and the ServerName. then do a du -s on the document root and put the ...
2
votes
2answers
38 views

How to use perl’s uri_encode in one line

In the past I’ve used the code echo "&lt;one two&gt;" | perl -MHTML::Entities -ne 'print decode_entities($_)' to output <one two>. Now I want to do something similar, but I want to ...
0
votes
1answer
227 views

ksh perl script.. if condition

Friends... I have got bash script which calls perl script and emails logfile result everytime. I want to change my bash script such that it should only email if there is value in perl subroutine row ...
1
vote
2answers
132 views

perl - remove node from xml file

I have a XML file, and I want to read it - remove a node - save it. I run perl from terminal (perl script.pl) example XML (filename.xml): <?xml version="1.0" encoding="UTF-8"?> <twice> ...
0
votes
1answer
163 views

perl telnet - how to handle multiple pages of output

I'm writing a script for saving the switch configuration via save the output "show run" because in firmware has problems with working through tftp. The output of "show run" is divided by posts "More: ...
0
votes
2answers
84 views

Connect to host and replay output

I am trying to solve the following problem: Connect to a given ip address and port number using Netcat. Enter the password when prompted by "Enter password:". Then the remote machine echoes 2 lines of ...
0
votes
1answer
64 views

perl script for replace data

I have the script below. Input data is date. What I need to do is to filter out the date which is no more than one week old and replace it with '0' and two weeks old replacing it with '1'. The other ...
0
votes
3answers
220 views

Perl Open multiple files and write to a single file side by side

I am running a Perl script in windows ,which creates multiple text files with some info. I would like some help with a Perl script to put all the text file data into one file side by side. I know I ...
0
votes
4answers
56 views

Script is not running or showing errors

I am writing a script that looks at an access_log file to see how many times each search engine was accessed and to see which one is accessed the most. I am sure there are problems with some of my ...
-4
votes
1answer
122 views

Web Interface for Interacting with a Cisco 3560 Switch [closed]

I am trying to create a web interface that can be used to log into a cisco 3560 switch and push configs, bring up ports and also put them off. Not much, this is just for those functionalities. Any ...
0
votes
1answer
153 views

devide a file and merge back them after process

split a file based on size and append a first "string pattern" to the end of part1 from the next part and maintain a particular size all time.
1
vote
5answers
139 views

Perl hashes. iterate through foreach

Have some problem with Perl hashes. I have an XML: <?xml version="1.0" encoding="utf-8"?> <SvnRequestUsers> <AccessCode>$TR0ngP@ssvv0rd!</AccessCode> <SvnUsers> ...
0
votes
1answer
57 views

Testing Scripts in Distribution without Building

I am trying to test a script that I'm including in my Perl distribution. The script only outputs to files, so my tests check file contents after running it. I tried following the directions in this ...
3
votes
4answers
194 views

Morse Code Decoder in Perl

I am trying to teach myself Perl and I have been struggling... Last night I did a program to calculate the average of a set of numbers that the user provided in order to learn about lists and user ...
0
votes
2answers
303 views

Perl program to calculate the sum of the numbers that the user enters

I am trying to write a simple perl script to learn Perl. This is the first script I have written using user input so bare with me :P The script needs to get a series of numbers inputed by the user and ...
-1
votes
3answers
95 views

PERL: Sorting Letters from A to Z

I'm Trying to sort letters in a file from A to Z for example: a A B d r g sorted: A a B d g r @ARGV == 2 or die "Usage: $0 infile outfile\n"; open $old, '<', $ARGV[0] or die $!; open $new, ...
0
votes
2answers
431 views

Perl: How to remove spaces and blank lines using 1 scrpit

I have got 2 perl scripts, first one removes blank lins from a file and the second one removes all spaces inside a file. I wonder, if it's possible to connect both of these regular expressions inside ...
-5
votes
2answers
180 views

Perl: How to convert letters to UpperCase without uc() function [closed]

I'm trying to write a script which will convert all letters from lowercase to uppercase without using the uc() function.
0
votes
5answers
214 views

Perl: Erase empty lines and save in a new file

I am trying to write a script which will count and erase empty lines from a file and save the changes in a new file: if (@ARGV != 2) { print "Usage: $0 infile outfile\n"; exit; } $infile = ...
1
vote
1answer
87 views

how to escape my string when I calling a shell commend in perl?

I just want to use a awk command in my perl script like follows: $linum = `awk -F "%" '/^\s*kernel/{print NR}' < $grubFile`; But it will say: Unrecognized escape \s passed through at ./root ...
0
votes
2answers
113 views

Passing PHP argument from database to Perl Script,

First of all, i'll say that i am new to Perl. I am having some problem passing a php argument to my perl script. The argument comes from an SQL querie. Here's an example and explanation of the code. ...
0
votes
3answers
286 views

Call Unix Shell commands from Servlet/JSP

I need to call some Unix commands from my Servlet. I have some Perl script, but I want to "translate" them into Java. Here is something that I want to do on Java, but that I've made in Perl: ...
0
votes
1answer
129 views

Unable to execute git command in Perl

Hi! I have no problem running git log --grep="cherry picked" --all > cherrypicklog.txt from the command line. However it failed to execute in Perl. my $result = `git log --grep="cherry picked ...
3
votes
4answers
99 views

Deploy script needs to update an integer in a config file

I'm working on a python fabric script that eases my solution deployment on different environments. It works great so far, but I have at the end of the script a prompt that ask me if I want to edit a ...
1
vote
1answer
72 views

Prevent users from modifying Perl script

I am using Perl PAR module for packaging my applications written in Perl. As a security request, I'd like to prevent users from modifying the scripts. Is it possible to do this within the PAR module, ...
0
votes
3answers
98 views

Running Perl Scripts on servers that don't have the modules

I need to run a perl script to gather system information that will be deployed and executed on different unix servers. Right now I am writing it and testing it, and I'm receiving this error. ...
3
votes
2answers
79 views

Any built in methods where I can get the UNIX server manufacturer / model and serial number?

I am writing a Perl script that will be deployed and executed on many servers. Some of my requirements are retrieving the manufacturer, model and serial number. Unfortunately I can't seem to figure ...
0
votes
2answers
94 views

Perl Script calling Subroutines within Subroutines?

Hi So I created the following script for outputing to a wiki page. The problem is that I am not sure in how to format my output. Here is my code: #!/usr/bin/perl use strict; use warnings; use ...
-2
votes
1answer
95 views

Perl randomly adds newline characters when a Subroutine is called [closed]

I run through a variety of subroutines in my perl script. On first run through the script uses the sub routines and produces this: ------------ Dates Here ------------ As the script progresses it ...
0
votes
2answers
221 views

perl encryption script IDEA

Hi everyone im making a perl script to encrypt and decrypt text, i just have started i have this: #!/usr/bin/perl use Crypt::IDEA; my $key = pack("H32", "0123456789ABCDEF0123456789ABCDEF"); my ...
3
votes
1answer
121 views

Correct way to pass hex characters as arguments - system()

I am messing around with buffer overflows and I'm trying to execute a return into libc vulnerability. To aid me, I have devised the following perl script: #!/usr/bin/perl for ($i = 1; $i < 200; ...
4
votes
3answers
243 views

PERL to count non-printable characters

I have 100,000's of files that I would like to analyze. Specifically I would like to calculate the percentage of printable characters from a sample of the file of arbitrary size. Some of these files ...
0
votes
1answer
68 views

portable module in Python or Perl to edit xls and save xls as csv?

I am on a network and computer where nothing can be installed. On this computer i run portable apps through a USB, however I need also to to edit xls, and save as csv. Since i cannot install anything ...

1 2 3 4 5