Repeat function in shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Repeat function in shell script
# 1  
Old 11-22-2009
Repeat function in shell script

Hi all,

I want to use the wget command to download a file from a webpage and if just in case the file is empty the script should repeat the wget command.

something like this

wget -q -O - http://www.someurl.something > /tmp/file
if [[ -s /tmp/file ]] ; then
echo "$FILE has data." (Continue rest of the script)
else
echo "$FILE is empty." (Repeat the wget command until file contains data then continue rest of the script)
fi ;

Thanks for any help.
# 2  
Old 11-22-2009
You can do something like that :
Code:
>/tmp/file
until [ -s /tmp/file ]
do
   wget -q -O - http://www.someurl.something > /tmp/file
done

Jean-Pierre.
# 3  
Old 11-22-2009
Hi Jean-Pierre,

Thanks for the reply, your advice works but is in a loop and doesn't stop.
Any ideas?
# 4  
Old 11-22-2009
Quote:
Originally Posted by stinkefisch
wget -q -O - http://www.someurl.something > /tmp/file
if [[ -s /tmp/file ]] ; then
(...)
else (...) (Repeat the wget command until file contains data
It loops because the file does't contain any data, that's what you wanted.
It would be better to insert a
sleep 10 (or any other number of seconds) to avoid overloading (and possible banning of your IP) of the server. It would be better to put a maximum iterations (20 in the example below) in the loop for the same reason.
Code:
>/tmp/file
until [ -s /tmp/file ] || [ $I -gt 20 ]
do
     wget -q -O /tmp/file www.someurl/something
     let I+=1
     sleep 10
done

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script to pass the config file lines as variable on the respective called function on a script

I want to make a config file which contain all the paths. i want to read the config file line by line and pass as an argument on my below function. Replace all the path with reading config path line by line and pass in respective functions. how can i achieve that? Kindly guide. ... (6 Replies)
Discussion started by: sadique.manzar
6 Replies

2. Shell Programming and Scripting

What is the function of the following lines at the top of a shell script file: Directory and Script?

The file starts like this: Directory: <path to the script> Script: <script fife name> #!bin/ksh ##Comments <actual script> What is the use of the first two lines in the script? What if I save the file without them? What will be the effect? They are not comments. Im very new to this,... (4 Replies)
Discussion started by: remytom
4 Replies

3. Shell Programming and Scripting

Shell Script function to use script name for log file output

Hi Team - I"m very new to Shell Scripting so I have a rather novice question. My forte is Windows Batch Scripting so I was just wondering what the Shell Script equivalent is to the DOS command %~n? %~n is a DOS variable that dispayed the script name. For instance (in DOS): REM... (11 Replies)
Discussion started by: SIMMS7400
11 Replies

4. Shell Programming and Scripting

Call a function in shell script from another shell script

I've 2 shell scripts viz., CmnFuncs.ksh and myScript.ksh. 1st script contains all common functions and its code is as below: $vi CmnFuncs.ksh #!/bin/ksh RunDate() { .... .... export Rundt=`date +%Y%m%d` } 2nd script is invoking the above one and I expect to use the RunDt variable... (8 Replies)
Discussion started by: njny
8 Replies

5. Red Hat

how to call a particular function from one shell another shell script

please help me in this script shell script :1 *********** >cat file1.sh #!/bin/bash echo "this is first file" function var() { a=10 b=11 } function var_1() { c=12 d=13 (2 Replies)
Discussion started by: ponmuthu
2 Replies

6. Shell Programming and Scripting

Function in Shell script

Legends, Can you please debug, what's wrong with the below code. I am gettng unexpected token error RebuldPF() ( #Changing the directory to data directory where the pf exists. cd /home/sandeep/files #Listing the names of the Pricefiles for rebuilding echo "The following pricefiles will... (6 Replies)
Discussion started by: sdosanjh
6 Replies

7. Shell Programming and Scripting

SHELL SCRIPT Function Calling Another Function Please Help...

This is my function which is creating three variables based on counter & writing these variable to database by calling another function writeRecord but only one record is getting wrote in DB.... Please advise ASAP...:confused: function InsertFtg { FTGSTR="" echo "Saurabh is GREAT $#" let... (2 Replies)
Discussion started by: omkar.sonawane
2 Replies

8. Shell Programming and Scripting

Shell Script Function

Dear Friends, I am on SOLARIS 9 (ksh) I am working on a shell script that upload files with NcFTP with resume option. So far the script is working correctly. The script makes a list of files that need to be transferred and then launch the NcFTP command to start the transfer. ... (0 Replies)
Discussion started by: Aswex
0 Replies

9. Shell Programming and Scripting

getting the value of a c function in shell script

Let say there is a module fileselection module written in c language which returns the file name. Is it possible to get the file name from the file selection module directly, I mean can we call a c function directly in shell script without doing executable. If possible then how it can be... (1 Reply)
Discussion started by: surjyap
1 Replies

10. UNIX for Dummies Questions & Answers

Repeat a command in a shell

Hi there, i would like to repeat a command in a shell sript (bash) the script starts with a menu to choose a menu point to do something .... on the end of the script i would like to restart the programm to choose the menu points on the beginning. I would also make a sript that send... (2 Replies)
Discussion started by: scotty
2 Replies
Login or Register to Ask a Question