Tagged Questions
0
votes
0answers
38 views
How to set PATH from cygwin so perl can use it
In a situation where cygwin and a non-cygwin perl installation coexist, I am having touble setting the PATH from cygwin, so perl is happy with it.
The trouble is that perl seems to expect DOS-style ...
0
votes
1answer
141 views
Can't locate loadable object for module DBD::Oracle in @INC : Cygwin
I am using cygwin on windows to compile perl modules. I was able to install perl DBI through cpan later I installed DBD , it aslo said successfully installed.
cpan[1]> install DBD::Oracle Going ...
1
vote
1answer
55 views
Unable to determine file creation time with perl on Windows/Cygwin
I wrote this to find out the file creation time for a given file:
#!/usr/bin/perl
use strict;
use warnings;
use File::stat;
open (my $fh, '<', "abc.txt") or die "$!";
my $t = (stat($fh))[9];
...
0
votes
0answers
23 views
Is it possible that install Event::Lib within cygwin?
I wrote a perl script under ubuntu.But now I need to build an exe file for windows users.
I did these steps:
install cygwin and all 'Devel' softwares.
run 'apt-cyg install libevent-devel --mirror ...
3
votes
1answer
213 views
Archive::Any gives IO error
#!/usr/bin/perl
use strict;
use warnings;
my $archive_files = "C:\\Temp\\FREMOTE\\test.zip";
sub extract_archive($$);
extract_archive($archive_files, "C:\\Temp\\FREMOTE\\TEST\\");
...
2
votes
3answers
115 views
Equivalent of >nul 2>&1 (from Batch) in Perl?
I am using Cygwin Perl on Windows XP.
Is there an equivalent of >nul 2>&1 of Batch in Perl?
Please refer Here.
1
vote
0answers
126 views
Windows Emacs shell/shell fail to execute ack perl script(locale error)
Typing this command on regular cmd.exe or cygwin termal gives me results as expected:
$ ack hello
(I have ack.bat that execute ack.pl in my PATH)
However, when I run the same command from either ...
0
votes
2answers
170 views
Perl regex substitution not working with global modifier
I have code that looks like the following:
s/(["\'])(?:\\?+.)*?\1/(my $x = $&) =~ s|^(["\'])(.*src=)([\'"])\/|$1$2$3$1.\\$baseUrl.$1\/|g;$x/ge
Ignoring the last bit (and only leaving the part ...
3
votes
2answers
152 views
Updating comments of checkedin files in Clearcase with Perl Script
I want to update comments of checkedin files in Clearcase with Perl script.
This script works fine if the comment I'm passing from command line doesn't contain spaces.
But when I use comments with ...
3
votes
2answers
287 views
UTF-16 perl input output
I am writing a script that takes a UTF-16 encoded text file as input and outputs a UTF-16 encoded text file.
use open "encoding(UTF-16)";
open INPUT, "< input.txt"
or die "cannot open > ...
1
vote
2answers
306 views
How can I make Cygwin/perl load a specific library à la LD_LIBRARY_PATH/LD_RUN_PATH?
The issue I'm seeing is that the wrong version of a library gets loaded in a perl process running on Cygwin (1.7.15, current as of 09/2012).
Briefly, perl starts, does use XML::LibXML, which is the ...
3
votes
2answers
136 views
Does perlbrew work with cygwin?
Searching the web, I have found almost no evidence that perlbrew works on cygwin. The specifics of my current issue are:
With the latest install of cygwin (which includes perl 5.14.2), I'm trying to ...
2
votes
1answer
57 views
Error when invoking “new” method of Unicode::Collate::Locale Perl module on Cygwin
I am using Perl 5.14.2 with Unicode::Collate::Locale on Cygwin to sort some French text
use Unicode::Collate::Locale;
my $coll = Unicode::Collate::Locale->new(locale => "fr");
@french_text = ...
0
votes
1answer
216 views
Perl script getting stuck in terminal for no apparent reason
I have a Perl script which reads three files and writes new files after reading each one of them. Everything is one thread.
In this script, I open and work with three text files and store the ...
2
votes
3answers
1k views
Problems reading a .xls file using Perl Win32::OLE under Cygwin
I have been fighting with this one for two days, I cannot find the solution and I'm getting frustrated. While using the code below under Cygwin I get this error
OLE exception from "Microsoft Office ...
4
votes
3answers
295 views
Steps to build Perl 5.6.2 in Cygwin 1.7.11
I cannot seem to build perl 5.6.2 in Cygwin 1.7.11.
Here are the steps I am following to do it so far.
Download perl 5.6.2 source from website and untar to some folder "perl-5.6.2"
cd ...
3
votes
1answer
200 views
Does Perl's system() automatically escape characters in Cygwin?
I have Perl code that uses the system() function to call robocopy.exe, but it looks like it's mangling the parameters. I'm using Chef, which bundles Perl via Cygwin - "This is perl, v5.8.8 built for ...
7
votes
1answer
333 views
Does perl's -i with no argument create a backup file on Cygwin?
I have a bug report from a reliable person that on Cygwin and Perl 5.14.2, using perl's -i switch with no value creates a .bak backup file. It shouldn't according to the documentation in perlrun:
If ...
2
votes
1answer
614 views
Perl CSV_XS module installation failed using Cygwin
I am having problems installed a CPAN module Text::CSV_XS using Cygwin.
I did a
$ cpan Text::CSV_XS
CPAN: Storable loaded ok (v2.20)
.... Every was good till:.....
Writing Makefile for ...
4
votes
1answer
212 views
cygwin, perl, dos version of abspath()?
When running cygwin perl, is there a way to get the DOS absolute path from a cygwin path?
Ideally it would also resolve cygwin symlinks.
E.g.:
'/cygdrive/c/foo' -> 'C://foo'
3
votes
1answer
410 views
How do I fix “gcc: winrespp.rc: No such file or directory” during compiling PAR::Packer on Cygwin?
I have tried to install PAR::Packer in Cygwin for Windows on a 32 bit machine, so I executed cpan pp.
I am facing the following problem.
gcc-4 -c -DPERL_USE_SAFE_PUTENV -U__STRICT_ANSI__ -g ...
1
vote
1answer
311 views
cygwin perl error cannot load expat.dll
c:\>perl -de 1
Loading DB routines from perl5db.pl version 1.32
Editor support available.
Enter h or `h h' for help, or `man perldebug' for more help.
main::(-e:1): 1
DB<1> require ...
5
votes
2answers
6k views
How do I install perl libraries in cygwin?
I'm a C/C++/java unix geek by trade, but now I have to write a perl program in windows. So I've got cygwin, eclipse with EPIC installed, and simple test programs run. I do not have a unix machine ...
5
votes
6answers
3k views
Perl module error regarding “undefined subroutine”
I am trying to use a module called Math::Counting:
#!/usr/bin/perl
use strict;
use warnings;
use Math::Counting;
my $f = factorial(3);
print "$f\n";
When I run it however, I get the following ...
0
votes
0answers
183 views
Apache + Cygwin Perl
Does anyone knows how to link Apache localhost (for Windows) to use Perl in Cygwin and not in Activestate Perl?
Previously I have been using Activestate Perl for my localhost to test the web site. ...
0
votes
2answers
817 views
Why is Perl system call failing to invoke internal Windows command?
On one of our Windows XP machines, Perl system commands such as dir /b generate an error message such as: /b: no such file or directory. In other words, the switch is being interpreted as a filename.
...
4
votes
2answers
235 views
Specify Heap Size in Perl Script for Java Code
The java project i am working on needs to be tested for 1800 configurations. I have created a perl script for this and running it on cygwin.
Some of these configurations require more heap space than ...
1
vote
1answer
134 views
Cygwin wants to downgrade my Perl [closed]
I'm using Cygwin 2.769. I used setup.exe to upgrade Perl to version 5.14.1-2, which works fine. But now whenever I open setup.exe to upgrade/install some other package, it by default wants to ...
1
vote
3answers
479 views
Cygwin hangs on Perl script: Nothing seems to fix
I'm running Windows 7 64 bit, which seems to be part of the problem. At first my cpan would hang when I would try to install CPAN from the shell prompt.
I tried restarting my computer, and a ...
0
votes
1answer
544 views
CPAN error. How can I fix this?
This is driving me crazy- if you can be of assistance, I'd be much obliged. I am running Cygwin on Windows 7.
I have been attempting to write a Perl script to obtain and work with some JSON ...
1
vote
0answers
151 views
Win32::OLE creates a new instance when run under “GNU screen”
I am trying to access an OLE object "Broker.Application" via Win32::OLE
The application "Broker.exe" is already launched manually.
Running the following snippet from a bash shell using cygwin perl, ...
3
votes
2answers
611 views
Isn't List::Util part of Standard Perl Distribution?
On a certain system, I am running a perl script and it's failing by saying
Can't locate List/Util.pm in @INC (@INC contains: <Some-Path>/ActiveState/perl/lib ...
0
votes
1answer
202 views
using perl to build commandline args in gdb in Cygwin
I've used perl commands before to build commandline arguments in gdb (example: run perl -e 'print "A"x20'), but my Cygwin install doesn't parse the commands, it treats them as literal strings (argv[1] ...
0
votes
1answer
224 views
How to compile sendxmpp perl script in Cygwin
I have been using telnet to issue test commands to my Jabberd2 server. It is a clunky method, so I downloaded the sendxmpp package included with my build of Cygwin. When I issue the command sendxmpp ...
6
votes
1answer
1k views
Perl Cygwin fun. Module is loaded, but not being found by the program
Okay a few rules:
No, I cannot install Strawberry Perl on this system. I have to use Cygwin.
This is Perl 5.8.7. I cannot update it.
This is not my system. This is a customer's system, and I cannot ...
0
votes
2answers
1k views
Cannot execute system command in cygwin
I have the following simple perl script that I cannot execute in cygwin:
#!/usr/bin/perl
use strict;
system("../cat.exe < a.txt > b.txt");
When I run it, the script tells me:
./my_test.pl
...
2
votes
2answers
320 views
CPAN Issues on Windows XP
I'm suppose to do an install of a few Perl modules on a Windows box. This is a customer UAT box, so I have no idea how it was configured or by who. We did the install on the Dev box, and everything ...
0
votes
3answers
247 views
Supress prints from TASKKILL
I'm writing a Perl script that makes system calls to kill running processes. For instance, I want to kill all PuTTy windows. In order to do this, I have:
system('TASKKILL /F /IM putty* /T ...
1
vote
1answer
383 views
Running perl script with Net::SSH::Expect package in cygwin environment from DOS CMD
I am sucessed to run the Perl script which uses Net::SSH::Expect package from the cygwin command prompt. but i want to schedule the same script through the task schedular of windows 2003 or throught ...
0
votes
3answers
154 views
cygwin seems to be swallowing my carriage returns
I have a perl script that grabs some files from a remote server and I'd like to be able to represent progress. The way I'm trying to do it is like this:
print "\tDownloading ...
3
votes
2answers
523 views
perl.exe remap error under cygwin
My Cygwin environment (Windows 7 O/S) has developed a strange problem. A couple of days ago I was running a perl script fine, but today I'm getting
0 [main] perl 5056 C:\cygwin\bin\perl.exe: *** ...
1
vote
1answer
308 views
I'm confused about installing WWW::Curl for Perl in Cygwin
I have already installed Perl and libcurl using Cygwin's package manager. Now, I'm trying to install WWW::Curl. I have to specify the cURL include directory in WWW::Curl's Makefile.PL, but I have no ...
2
votes
1answer
3k views
What is the reason for this “Can't open perl script : No such file or directory”
If i run this command in cygwin(on windows xp platform)
perl /cygdrive/c/Sagar/New_ISP/isp_fw_11_24_Test_V1/Scripts/w
indows_test_report_tool/testdbmerge.pl
I get this error
Can't ...
0
votes
1answer
476 views
Missing “cpan>” prompt when running the CPAN shell in a Strawberry Perl environment under Cygwin
I've encountered a strange prompt problem when running the CPAN shell in a Strawberry Perl environment under Cygwin.
When launching the CPAN using perl -MCPAN -eshell I get the following output:
...
0
votes
2answers
40 views
Remote into Server
I want to remote into the korn shell of a Unix server from a Windows box, I did this using perl and cygwin, is there another way of doing this and then after run several unix commands from a text file ...
5
votes
2answers
284 views
Hiding User Input
I'm trying to get a script that works both in a native windows shell and a cygwin shell (via ssh) that prompts for and reads a password entered by the user. So far, I have tried the following ...
1
vote
2answers
2k views
How to remove new line characters until each line has a specific number of instances of a specific character?
I have a real mess of a pipe-delimited file, which I need to load to a database. The file has 35 fields, and thus 34 pipes. One of the fields is comprised of HTML code which, for some records, ...
2
votes
4answers
826 views
How to specify in a bat file that a script needs to be called in Cygwin mode?
I wrote a perl script which uses some linux commands (grep, ls etc..). I can successfully run this from Cygwin or Linux. I want this task to be run periodically on a Windows Server which has Cygwin ...
0
votes
1answer
178 views
rename files& directories {searchstr} with {replacestr}
I have an application (Templify) that creates a templatized directory structure, but it seems to not be able to rename the "__NAME__" with what I've identified as the target.
This ...
0
votes
2answers
652 views
How to quickly get directory (and contents) size in cygwin perl
I have a perl script which monitors several windows network share drive usages. It currently monitors the free space of several network drives using the cygwin df command. I'd like to add the ...