Reminder script not working...

 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions Reminder script not working...
# 8  
Old 11-01-2011
Quote:
Originally Posted by csharp100
Sure, the for loop but I could not get it to work either. i.e.
Good -- you were there!!
Quote:

Code:
echo "\nEnter time: "
read TIME
echo "\nEnter message: "
read MESSAGE
echo "\nEnter user(s): "
read LOGNAMES
at -k $TIME << EOF
for NAME in $LOGNAMES
     do
     echo $MESSAGE | write $NAME$
     DONE
EOF

NAME needs to be a variable in the script and not expanded when the script is written to at. So, if you escape it /$NAME that will put it literally in the script ($NAME) and not what name contains (which is nothing). Drop the last dollar sign.

The only other problem I see is that DONE should be lower case. That might just be a cut/paste issue; hard to say from this end.

With those changes it should send you mail with the list of names (I'd use echo to avoid errors if the list is empty).

Have a go with those changes -- you're a lot closer than you think!
This User Gave Thanks to agama For This Post:
# 9  
Old 11-01-2011
Quote:
Originally Posted by agama
Good -- you were there!!


NAME needs to be a variable in the script and not expanded when the script is written to at. So, if you escape it /$NAME that will put it literally in the script ($NAME) and not what name contains (which is nothing). Drop the last dollar sign.

The only other problem I see is that DONE should be lower case. That might just be a cut/paste issue; hard to say from this end.

With those changes it should send you mail with the list of names (I'd use echo to avoid errors if the list is empty).

Have a go with those changes -- you're a lot closer than you think!
Thanks and I got it, but I believe the $NAME should be \$NAME. That is the way it worked for me. I appreciate your help!
# 10  
Old 11-01-2011
Clue:
How are you going to get the $tty ?
Portion corrected
Code:
who | grep $LOGNAME | sed 's,.*\(pts/[0-9]*\).*, \1 ,' |
while read tty
do
  echo $MESSAGE | /dev/$tty
done

#
execution:
#
an12:/home/vbe $ who | grep $LOGNAME | sed 's,.*\(pts/[0-9]*\).*, \1 ,'|
> while read tty
> do
>   echo $MESSAGE | /dev/$tty
> done
/usr/bin/ksh[4]: /dev/pts/14: 0403-006 Execute permission denied.
/usr/bin/ksh[4]: /dev/pts/24: 0403-006 Execute permission denied.
/usr/bin/ksh[4]: /dev/pts/27: 0403-006 Execute permission denied.

You carry on now...
# 11  
Old 11-01-2011
Quote:
Originally Posted by vbe
Clue:
How are you going to get the $tty ?
Portion corrected
Code:
who | grep $LOGNAME | sed 's,.*\(pts/[0-9]*\).*, \1 ,' |
while read tty
do
  echo $MESSAGE | /dev/$tty
done
 
#
execution:
#
an12:/home/vbe $ who | grep $LOGNAME | sed 's,.*\(pts/[0-9]*\).*, \1 ,'|
> while read tty
> do
>   echo $MESSAGE | /dev/$tty
> done
/usr/bin/ksh[4]: /dev/pts/14: 0403-006 Execute permission denied.
/usr/bin/ksh[4]: /dev/pts/24: 0403-006 Execute permission denied.
/usr/bin/ksh[4]: /dev/pts/27: 0403-006 Execute permission denied.

You carry on now...
I believe I know where you are going. I used the above for loop instead but I think you are pointing out the fact that some users might have there tty's turned off for receiving messages. Is that correct? My time was limited on getting the assignment done. I had thought of that though.
# 12  
Old 11-01-2011
Quote:
Originally Posted by csharp100
Thanks and I got it, but I believe the $NAME should be \$NAME. That is the way it worked for me. I appreciate your help!
Ack!! I've been typing too many HTML tags by hand!

Glad it worked.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with speeding up my working script to take less time - how to use more CPU usage for a script

Hello experts, we have input files with 700K lines each (one generated for every hour). and we need to convert them as below and move them to another directory once. Sample INPUT:- # cat test1 1559205600000,8474,NormalizedPortInfo,PctDiscards,0.0,Interface,BG-CTA-AX1.test.com,Vl111... (7 Replies)
Discussion started by: prvnrk
7 Replies

2. UNIX for Beginners Questions & Answers

Why is this script not working?

for file in $(find /home/p611568/*.rpt -mtime -2 | grep -v ftplog) do awk '$1 == "XifPages," {PAGE = $5} $1 == "XifEndOfDocuments," {LINE = $5} index($0,"Value") && index($1,"Info") {sevGTI = 1} END {if (sevGTI) printf "%7s%10s%s",PAGE,LINE ... (4 Replies)
Discussion started by: bcarosi
4 Replies

3. Shell Programming and Scripting

Script not working

Hi i have write the one scripts and the scripts is error. The scripts purpose select one directory to check the file is there or not. i will give the two format of file to search the mention the path one file is there to select the file one copy the another location.please check the my script give... (1 Reply)
Discussion started by: rajivgandhi
1 Replies

4. Shell Programming and Scripting

expect script inside shell script not working.

Shell Scipt: temp.sh su - <$username> expect pass.exp Expect script: pass.exp #!/usr/bin/expect -f # Login ####################### expect "Password: " send "<$password>\r" it comes up with Password: but doesnt take password passed throguh file. (2 Replies)
Discussion started by: bhavesh.sapra
2 Replies

5. Shell Programming and Scripting

Script not working in cron but working fine manually

Help. My script is working fine when executed manually but the cron seems not to catch up the command when registered. The script is as follow: #!/bin/sh for file in file_1.txt file_2.txt file_3.txt do awk '{ print "0" }' $file > tmp.tmp mv tmp.tmp $file done And the cron... (2 Replies)
Discussion started by: jasperux
2 Replies

6. Shell Programming and Scripting

Script is not working from cron while working manually

Hello, I am facing a very strange problem when I run my script manuallu ./Fetchcode which is using to connect with MKS integrity from linux end it workks fine but when I run it from cron it doesn't work.Can someone help me 1) How could I check my script when it is running from cron like... (3 Replies)
Discussion started by: anuragpgtgerman
3 Replies

7. UNIX for Dummies Questions & Answers

script not working

hi guys im new to unix and what to get this script working the scripts purpose its purpose is to move files i copy it from a HP UX pdf just for practice but when i execute it comes up wit this error command not found on the line if plz help me and thank in advance to those who do ps im... (3 Replies)
Discussion started by: ShinTec
3 Replies

8. Shell Programming and Scripting

Perl script 'system' linking to local shell script not working

Trying to figure out why this works: printpwd.pl #!/usr/bin/perl use CGI::Carp qw( fatalsToBrowser ); print "Content-type: text/html\n\n"; $A = system("pwd"); $A = `pwd`; print "$A\n"; ^^actually that works/breaks if that makes any sense.. i get the working directory twice but when... (5 Replies)
Discussion started by: phpfreak
5 Replies

9. Shell Programming and Scripting

Script not working..."sort" not working properly....

Hello all, I have a file - 12.txt cat 12.txt =============================================== Number of executions = 2 Total execution time (sec.ms) = 0.009883 Number of executions = 8 Total execution time (sec.ms) = 0.001270 Number of... (23 Replies)
Discussion started by: Rahulpict
23 Replies

10. Shell Programming and Scripting

Script not working.

Hi, I am a DBA, worked on Windows platforms for past 6 years, and now shifted in environment where HP UX is OS environment. I have task to complete which involves Unix script to be prepared. This script should FTP the file to the destination server and if this FTP fails, then it should... (5 Replies)
Discussion started by: Nishchal_Nagre
5 Replies
Login or Register to Ask a Question