Script to download file using wget

Hi

I need a Shell script that will download a text file every second from a http server using wget.

Can anyone provide me any pointers or sample scripts that will help me go about this task ???

regards

techie

Reply to
techie.embedded
Loading thread data ...

#!/bin/bash cd /download/directory while true ; do wget http://some/file/somewhere.txt sleep 1 done

HTH

-- Lew

Reply to
Lew Pitcher

ElectronDepot website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.