Script that performs action when receiving an SMS.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script that performs action when receiving an SMS.
# 1  
Old 03-02-2019
Script that performs action when receiving an SMS.

My case is the following: -I have a Linux system where I have an smsd installed (SmsTools3)

-This system works through a GSM module in which I can send and receive text messages.

-Text messages arrive in a certain folder (/ var / spool / sms / incoming)

-I need a script that does different things in response to an incoming SMS to the "Incoming" directory.



The idea is that each time an SMS arrives, the system analyzes the folder where these messages are received, choose the most RECENT message and execute an action on the system. What I have at the moment is this:

-------------------------------------------------- -------------------------------------------------- --------------------------------------------------
Code:
<#! / bin / bash
  #Declaration 



DIRECTORY = / var / spool / sms / incoming 

PATRON = 'Reset'
 

# Search 

ls -lt $ DIRECTORY && grep -iqrl $ PATRON $ DIRECTORY / * 



if [$? -eq 0]; then 

PLACE = $ (grep -irl $ PATRON $ DIRECTORY / *) 

echo "The pattern $ PATRON was located at $ PLACE." 

else 

echo "The pattern $ PATRON was not found in the files present within $ DIRECTORY." 

fi>

-------------------------------------------------- -------------------------------------------------- -------------------------------------------------- -
ANSWER:
Code:
root @ AcerNitro5: / home / halley # ./script3.sh
 total 8 -rw-r - r-- 1 root root 54 Mar 1 11:07 test2 -rw-r - r-- 1 root root 74 Mar 1 10:18 test1

The Reset pattern was located in / var / spool / sms / incoming / test 2 / and var / spool / sms / incoming / test2.
-------------------------------------------------- -------------------------------------------------- --------------------------------------------------
- I still have a lot to complete ... I'm a little lost on how to make the script select the text file (SMS incoming incoming) more RECENT where there is a pattern "Reset" and then run a reboot to the system.




Moderator's Comments:
Mod Comment Please use CODE tags as required by forum rules!

Last edited by RudiC; 03-02-2019 at 02:18 PM.. Reason: Added CODE tags.
# 2  
Old 03-02-2019
Welcome to the forum.


A few comments first:
- Please use code tags to improve readability and understandability of your code and data.
- exercise utmost care when composing your spec: a leading (or missing) slash can make a huge difference in the functioning (or mal-) of your script (here: /var vs var)
- WAY too many spaces. Your code given above will not run. NO spaces around = and / , and following $ . Too few around [ and ] .



When reading your request, my first thought was: a system like that should have hooks (or so) to trigger actions on events like incoming mail. Et voila, from the project homepage:

Quote:
The program can be run as a SMS daemon which ... can run other external programs or scripts after events like reception of a new message ...
Did you consider that functionality, which is to be preferred over repeatedly listing directory contents?
# 3  
Old 03-03-2019
No, do not consider it because I am a beginner in these subjects. I regret violations of the rules, but if I made myself understood, I would like to know how to do what you tell me.
# 4  
Old 03-03-2019
I'm afraid I can't give you more than general hints as I don't know the product. I found the "trigger external program" feature mentioned by just glancing at their web page. How about working from the ground up - read the product's man page, web site, look into the samples given, and try setting up a test system, managing / modifying the configuration until satisfied?

Last edited by RudiC; 03-03-2019 at 05:51 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Script performs the right task but fails against check

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Write a script checkFiles.sh that takes an arbitrary number of file paths from the command line and carries ... (5 Replies)
Discussion started by: Ezraek
5 Replies

2. Shell Programming and Scripting

Sending sms through Shell script

Can anyone please help me to in scripting of sending sms through shell script (1 Reply)
Discussion started by: gargidas15
1 Replies

3. Shell Programming and Scripting

Script to performs checks

Hi , I need a script which performs below activity I have one file named "testfile" in 9 different directories with same name. I want to perform below action with each testfile of each directory. if ; then mv listfiles listfiles_`date +%b%y` else echo No Such files fi ... (4 Replies)
Discussion started by: sv0081493
4 Replies

4. Shell Programming and Scripting

Bash script to send SMS

Hey guys I was wondering how to go about creating a bash script to send SMS..any ideas are appreciated.. (2 Replies)
Discussion started by: blackzeus
2 Replies

5. Solaris

Help with SMS sending Script

I would like assistance on a script that could send a text message to my mobile phone when I run a command and the text should be send only if a condition is met. I want to have a cron-job running every 10 minutes to check the system for overload conditons with a command: more logfile.log | grep... (5 Replies)
Discussion started by: thinktank
5 Replies

6. Shell Programming and Scripting

Need help with SMS script...

I use the SMS script on this page: http://www.prescriptionpc.com/TEST_newpage1.html#section=sms The “functions” work fine, but after clicking “submit” and receiving the “thank you” message, nothing happens. I find it odd that I can send a text message to myself choosing my carrier (Virgin... (0 Replies)
Discussion started by: Bruce1969
0 Replies

7. UNIX for Dummies Questions & Answers

run a perl.script upon receiving an email in Sendmail

Hi All I am newbie with Sendmail and Linux in general. We use sendmail for outgoing and incoming mails. Once our server receives a certain email xxx@yyy.com we would like to run a PERL script doing some task wiht it. Can you address me a little bit on that topic? In order to do that the... (0 Replies)
Discussion started by: manustone
0 Replies

8. HP-UX

sending sms through shell script

pl. if any one can help me in this . i wouldlike to know if there is a way to send sms through unix box. i have tried using mailx option. but what type of servers will be required . if any one can give me references... Thankxs in advance Regards, Alpa (1 Reply)
Discussion started by: alpareshamwala
1 Replies

9. Shell Programming and Scripting

Sending SMS Via Unix Script?

Hi, Is it possible to send sms to a mobile from unix box using Shell Scripting? I really wonder if anyone can help me with some information regarding how to setup the environment if possible. Iam also searching and trying to setup the same. My Environment: HP-UX B.11.11 U 9000/800... (2 Replies)
Discussion started by: Omkumar
2 Replies
Login or Register to Ask a Question