Writing to a Wiki [closed] - perl

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need to write a script that writes (appends) data to an internal wiki that isn't public (needs username and password but unencrypted, http not https). The script can be a shell script, a Perl script, or even a Java application (last resort). Any help would be appreciated. Let me know if any additional information is needed.
Right now, I'm only able to read from the wiki using LWP Perl library using the getprint($url) function.
Thanks

If it's truly MediaWiki, then just use MediaWiki::API.

Related

Reg: File Path Link in email body not complete Perl [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 days ago.
Improve this question
I am pretty much new in Perl and wanted some guidance on how this issue can be resolved.
I have written a program to collect the information from the data and put it in the excel. When sending the email using the MIME::Lite->new.
The issue I am facing here is that when I print the complete windows path of the report location only half of the path is hyperlinked and the rest is not. The issue is due to the space in the directory path. I have tried using double slashes but it still doesn't work. I have shared the screenshot below and you can see that post the space, rest of the line is ignored.
Any guidance / advice would be great. Thank you.

Making perl modules executable [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am new to Perl. I have created a Perl module(.pm). I am trying to make it executable. I wanna know is it possible to make Perl module executable or I am going wrong?
Thanks in advance.
Are you asking how to compile Perl code into machine instructions? There is no such tool. While Perl is compiled, it's compiled into high-level opcodes which require an interpreter to evaluate.

I want to encrypt my powershell script using a key [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I don't want to show my code so i want to encrypt the script which is difficult to decrypt.
If possible i want to run my encrypted script through power shell script.
I use PS2EXE to pack scripts as exe's. here is the link to the code link.
The code needs to be updated to account for newer version of powershell. Where the script checks for PSVerion.Major for version 4 change the -eq to -gt.
It can be a little tricky to use at first but the code is solid minus the update listed above.

Windows - Where can I find a system() list of parameters? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
This is my first question here in StackOverflow, so if this question has already been made or is in the wrong topic, please excuse me.
I'm studying C using Windows and I'm looking for a list/book/manual of usable parameters for the system() function. Stuff like system("pause"), system("cls"), system("color 1f"), etc...
Thanks for the help in advance.
The purpose of system() API is to execute an external command, the parameters are the arguments of the command that you are trying to execute, just like if you were typed in shell prompt, there is not anything special to pass, just put into the string.

How to change IP address using perl [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am beginner to Perl and I have to write a script which could change the IP address after every 1 hour.
I want to change it because I receive some data from a dongle from a website and that website has some time limit to receive that data, so currently we need to unplug that dongle and use another to
change IP address. (I mean I have to request DHCP for another IP.)
But currently I am asked to write a script using Perl. Could someone please help me how to do that?
It's too broad. Have a look at Net::IP module, read the documentation and you're good to go.