Hi I am new to this stuff
i want to use scriptthis perl script to simulate the https requests performed by the deep testing app (for realme devices)
now i need to run this script on (strawberry perl)
but i have no pc to do this
so how can i run perl script on termux
everytime i do this on termux
i get this
submitted by /u/dragonuser_
[link] [comments]
Basically, my Perl code wants to achieve the following :
my @array
= qx{cat /some/servers/list}; # this is working
my $port = 30004;
foreach(@array) {
my $return_code = system ("/usr/bin/nc -zv", $_, $port) # wanting to run nc -zv hostname 30004
But it just isn't working.
What I've tried so far :
foreach(@array) {
my @ args = ($_." ".$port)
my $return_code = system ("/usr/bin/nc -zv", @ args)
- Used IPC::System::Simple qx/systemx/ and then passed the whole thing thru systemx instead of system
- Used qx, Used exec, doesn't work.
Note: I need the return code for rest of dependant logic down the road, so have to have the $return_code scalar.
Please help! I'm at my wits end!
submitted by /u/icy-mist-01
[link] [comments]
Does anyone know how long perlmonks.org will be down?
submitted by /u/ContributionEastern7
[link] [comments]
Hello,
I'm trying to install Request Tracker and in the process am receiving an error that states:
Some dependencies were missing:
DBD::mysql >= 2.1018, != 4.042 ................... MISSING
I'm lost. How to do I resolve this?
Thank you!
submitted by /u/ngrybst
[link] [comments]
How does the following work, specifically the triple equal sign print "hello" =~ y===c # -> 4
submitted by /u/Both_Confidence_4147
[link] [comments]
Mo utilities for email.
Changes for 0.02 - 2024-04-26T23:02:53+02:00
- Add tests for error parameters.
- Rewrite the tests so that the functional tests are first and then the errors.