Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
Is it possible to get a stack trace printed for all warnings?
I can get it for all errors with: perl -MCarp::Always my_script.pl
But how can I get it for warnings?
perl -d:Confess script.pl
from http://search.cpan.org/~haarg/Devel-Confess-0.006001/lib/Devel/Confess.pm
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 days ago.
Improve this question
I have a PowerShell code which has many hash table. When i run it getting below message
"Some specified entity id(s) are unknown" .
Any way to figure out which line of code generating these messages.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
:3779:<![LOG[Resolved and downloaded package SDD344455 to **C:\Windows\ccmcache\3**]LOG]!><time="08:03:15"
please advise who to extract C:\Windows\ccmcache\3 from the string, been trying regex for hours. Thanks.
Try this:
[regex]::Matches($string,"to\s(.+)]LOG").Groups[1].Value
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I use this and this functions on my swift project. However, I want to close the alerts programmatically. How do I do this?
you can use this method to close SweetAlert
Usage:
sweetAlert.closeAlert(0)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I am trying to run perl script which contain use CM, use CM_USER and use CM_METRICS statement and I am getting error "Can't locate CM.pm in #INC". I have also tried to install these using CPAN but it also giving me error "cannot install".
You won't be able to install them from CPAN because they don't look like they are on CPAN.
Where did you get this program from? You'll need to ask the author where you can get the modules from.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to have a perl script that installs some softwares and runs some commands, could it be done ? if yes, can I have an example of how it could be done ?
I know how to run command in cmd using perl script, but it runs all of them in parallel, whitch not good for me.
if you you use backticks or system(); when executing your command. Perl will wait for the command to finish before moving on.
so you could either do
system("command");
or
print `command`;
good luck