I have a script that allows the user to input the following:
EQUALS
CLEAR
PLUS
MINUS
OVER
TIMES
But I run the script then type PLUS 42, it actually makes the value 43.
Please help
#!/usr/bin/perl
use strict;
use warnings;
my $value;
print "\n> ";
while ( <> ) {
chomp;
if (...
Thanks for the direction everyone. I now have expect loaded on my server, and will try to figure it out. Is there a way to use my existing script above, and only call the expect for the actual ssh part, or would it be better to write the entire thing with expect ? Sorry for the stupid...
Currently I'm using the script below only with TELNET instead of SSH and it works great. Trying to do the same type of thing with SSH, and can't seem to get it to login.
Please Help and newby out.
#!/usr/bin/ksh
# echo "Enter switch: \c"
# read switch
# echo "Enter username: \c"
# read...
I figured out the issue. Apparently the file I wanted to be included in the email can't have () or : in it. Once I removed those the script works fine.
I have a get_script that kicks off the other script. The reason is I'm pulling the same data from several places at once ever 5 minutes.
CRON Entry
1,6,11,16,21,26,31,36,41,46,51,56 * * * * /export/home/scripts/get_mtxcper
cat get_mtxcper
/export/home/scripts/mtxcper STLOMTX &
cat mtxcper...
/usr/lib/sendmail -v -f "ALERT" email@address.com < ALERT.txt
I only get 1 email when I do this, however I only see ALERT in the sender information. No information from the ALERT.txt file is included.
I was including the if statement at the end of a cron that runs every five minutes...
percent='99'
percent is small
before send
email@address.com... Connecting to corpmta.com. via relay...
220 wimidd01-smtp-01-internal.com ESMTP
>>> EHLO ilscha01-nsweng-01.com
250-wimidd01-smtp-01-internal.com
250-8BITMIME
250 SIZE 16777216
>>> MAIL From:<ALERT@ilscha01-nsweng-01.com> SIZE=36
250...
It seems to be working as far as the if portion, however it this is in a KSH script.
When it meets the criteria of the if statement I get several emails in a row with nothing in them other then ALERT as the subject.
if (( $(< PERCENT_ALERT.txt ) <= 100 )); then
/usr/lib/sendmail -v -f "ALERT"...
Better explanation is if the value in the PERCENT_ALERT.txt file is less than or equal to 100 then send an email with the text of a different file.
Hope that makes sense.
Thank you. That worked good.
What if one of the items was "escargo" ?
I would only want the items that end with "es" not anything with es in it. Is there a way to do that ?
Here is what I got when I replaced Durian with escargo.
Total value of White Peaches on hand = $285
Total value of...
I'm currently trying to learn PERL, and my instructor tasked me with the following and I'm kind of lost.
#!/usr/bin/perl
use strict;
use warnings;
# Grocery store inventory:
my $lines = <<'END_OF_REPORT';
0.95 300 White Peaches
1.45 120 California Avacados
5.50 10 Durian
0.40 700...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.