Is there a portable Perl? [closed] - perl

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there a portable Perl along the lines of portable Python? Something I could use (while learning the stuff) from my thumb drive?
Oh, and I'm talking about Window XP.

I can heartily recommend Strawberry Perl.
The Portable version is on Beta (the real meaning of Beta, though), click here to get it.
EDIT: The Portable version is already out of beta (for a few months now), check here

There's a test version over at PortableApps.com although it appears that long-term it will be replaced by Strawberry Perl (which is what it's based on).

I've deployed applications to hostile end user machines (i.e. machines I have no control over and no admin password) using Portable Strawberry Perl 5.10 with no problems. For development work in windows you might want this

Related

windows cmd and powershell and macos,linux terminal [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
can someone explain to me the differences between windows cmd and powershell?
from what I can see powershell supports similar syntax to macOS terminal and Linux shell...
so is it better to use powershell in order to learn only one shell syntax that I can use across all three operating software? and why windows support those two different types of shells?
thank you
CMD is just the built in shell in windows, from an older time. PowerShell is a full turing-complete language that can do many more things.
You're absolutely right that it works across multiple platforms as well. At some point, Windows decided to move PowerShell to open-source, and make things cross-platform. This started a bit before PowerShell 7, but it's really production ready with PowerShell 7 I'd say.
I would definitely sink more time into PowerShell, as most CMD commands work there anyway, but there's probably some level of opinion there as well.
Here's a good comparison

port a kernel module from solaris 10 to HP-UX 11.31 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to port a kernel module from solaris 10 to HP-UX 11.31.
There are any relevant guides for me?
Best practice is to find sample code that works for each kernel, and see how it uses the kernel functions. You'll not find many (if any) useful tutorials online for HPUX: a web search shows only books. Both Oracle and HP removed most of the useful information from their websites a few years ago.
Further reading:
So You Wanna Write Solaris Device Drivers?
Adding a kernel module to OpenSolaris
Developing Dynamically Loadable
Kernel Modules
Issue 1.0
(Google cache).

Perl Version 5.16.3 download [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Needed to download Perl 5.16.3 32 bit windows edition but unable to find the same. Can someone please suggest from where i can download this.
Apology if this is not the right forum to ask.
You can get all the Strawberry Perl releases here.
ActivePerl 5.16 is too old, so it's only availabe in the Business and Enterprise edition, details here.
Advanced users can compile Perl from the source code. This page seems to list the version you need.

Powershell online interpreter? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there online Powershell interpreter available on the Internet? I mean like trypython for Python programming language.
Full disclosure: I am the owner of Try It Online.
TIO Nexus has a Powershell interpreter as of a few days ago. It uses Powershell v6.0.0-alpha.13, which is the latest release of Powershell for Linux.
I've re-enabled these aliases – which conflict with POSIX utilities of the same name on *nix – to make the online interpreter more similar to Powershell on Windows. Powershell Core has only the aliases the developers deem fit for *nix.
Not that I know of, but PowerShell 3.0 has an installable web-based console that is a component of Windows Server. Full intellisense, the works. Very similar to the try* series. Download v3 and try it yourself.
Tutorialspoint offer an online PowerShell interpreter (amongst dozens of other programming environments) on their CodingGround site.
In reality, it's not a true PowerShell interpreter but a PASH shell, which is the Mono adaptation of Microsoft's scripting tool. Still, the syntax and standard cmdlets should be the same. However, you'll find it lacks or has different environment variables and other implementation-specific elements.

Is there anything like Fabric for Perl? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I really like Fabric for personal projects, but I am working in a Perl-oriented environment in my day-to-day job. I’d like to stay away from introducing another language to the workflow, so I’m wondering if there exists something similar to Fabric for doing automated deployments in Perl.
Have a look at Rex. However its more based on Capistrano than Fabric.
Also check out this older SO question Is there a Perl or Lua alternative to Capistrano?
As noted in this answer if you can log in with SSH, you can use Fabric, no matter the language used in the running app. Unless there is some Perl specific code that can't be run by issuing a command in a shell.