crontab and calling a .sh file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers crontab and calling a .sh file
# 1  
Old 09-18-2012
crontab and calling a .sh file

Hey out there. I have a .sh file I am calling from cron that I am trying to use to shut down the app at midnight. I have a file that does it and works just fine if I run it by typing "bash crontabstop.sh" from a command prompt. But if I call the file from a crontab I get this output.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/prod/app/iplax/current/IPWorkers/bin/crontabstop.sh: whoami: not found
IP Web App wasn't running.

Stop webapp complete.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
And the webapp never shuts down
This is the contents of the file. What do I need to do to get this to run when calling this file from crontab?
Smilie
Code:
pid=`whoami`
if [ "$pid" != '' ] ; then
   cd ~ 
    stop
else
    echo "IP Web App wasn't running."
fi
echo " "
echo "Stop webapp complete."


Last edited by Corona688; 09-18-2012 at 05:24 PM..
# 2  
Old 09-18-2012
Set PATH at top of script same as your current path in your sh shell.
# 3  
Old 09-18-2012
That script looks suspect. Unless you have a bizzare PATH that includes the local directory, why bother CD-ing before running stop ?
# 4  
Old 09-18-2012
Quote:
Originally Posted by Corona688
That script looks suspect. Unless you have a bizzare PATH that includes the local directory, why bother CD-ing before running stop ?
I copied and pasted from a working script so short answer...dont know.
# 5  
Old 09-18-2012
Quote:
Originally Posted by vsekvsek
I copied and pasted from a working script so short answer...dont know.
Never, ever blindly copy-paste code which you don't know how it works.

That looks like a badly-written script which only works in someone's home directory and depends on their own weird profile settings.
# 6  
Old 09-19-2012
As posted and when run from the local directory, the entire script always executes:
Quote:
cd ~
stop
The code never checks whether any process is running. The whoami command is a Shell Builtin which just replies with your current username.

Have you had any training in Shell Programming?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

calling a file

Hi, How to call a file in shell script? I need to execute a file in shell script whether its possibel if it please give some example please help me (4 Replies)
Discussion started by: thelakbe
4 Replies

2. Shell Programming and Scripting

need help with calling a config file in script

Hi, I am writting a script and i am using SYBASE database. i have a config file with my logging credentials. when i am calling the file via isql command its throwing me an error. see the below code. while read line do SERVER=`echo $linea |awk -F"|" ' {print $1} ' ` ... (6 Replies)
Discussion started by: dazdseg
6 Replies

3. Shell Programming and Scripting

Renaming a file use another file as a sequence calling a shl

have this shl that will FTP a file from the a directory in windows to UNIX, It get the name of the file stored in this variable $UpLoadFileName then put in the local directory LocalDir="${MPATH}/xxxxx/dat_files" that part seems to be working, but then I need to take that file and rename, I am using... (3 Replies)
Discussion started by: rechever
3 Replies

4. Shell Programming and Scripting

Calling a file using Telnet

Hi, I have two server... windows and Unix... I have .bat file on my windows and i want to use Telnet to trigger this bat so it runs on the windows server and give its output. I know that we can run a file using telnet but i have never used it so can any one say me how i can write a KSH script... (2 Replies)
Discussion started by: bhagya2340
2 Replies

5. UNIX for Dummies Questions & Answers

Calling on function from file??

This may sounds dumb, but can I call on a function from a file? For example, I have a function file full of functions like below (no shell designation): func { echo "blah blah blah 1" } func2 { echo "blah blah blah 2" } func3 { echo "blah blah blah 3" } Am I able to call on any one... (3 Replies)
Discussion started by: douknownam
3 Replies

6. Shell Programming and Scripting

Calling a substring from another file

I have two files: One is a list of numbers: 1 5 6 7 10 The second is a very long string abcdefghijklmno......1234567890 I'd like to print a new file with a 5 character substring that starts at each the positions listed in the 1st file: such as: abcde (4 Replies)
Discussion started by: dcfargo
4 Replies

7. Shell Programming and Scripting

calling .sql in .sh file

Hi All , I have created .sql script in unix.this script contains 4 sql queries. Now I want to craete .sh file based on .sql script. So please let me know the steps to craete .sh file Thank you. (1 Reply)
Discussion started by: user71408
1 Replies

8. Shell Programming and Scripting

calling lines from a file

I have a script that does domain name lookups, and I also have a file with one domain name per line. I would like to have a script that calls the domain name lookup script for each domain that is in the file. Any help is very much appreciated. The text file would be something like this ... (2 Replies)
Discussion started by: jjamd64
2 Replies

9. Shell Programming and Scripting

Get Calling File

OK, I'm very new to shell scripting, and I'm trying to write a (very) simple wrapper for sendmail that outputs all the arguments as well as the file that called sendmail to an output file which can later be looked over. Is it possible to get a file's name and path that called a script? (0 Replies)
Discussion started by: ghstber
0 Replies

10. Shell Programming and Scripting

Calling other file function

Hi, I am pretty new to unix. Lets say i have a program(run_program) that will call another file function(functiona, in same directory): hence, inside that run_program. i will just call "functiona xx xx" to refer and use that function. this run ok until i run this program from another folder.... (3 Replies)
Discussion started by: maldini
3 Replies
Login or Register to Ask a Question