Script to look for new version of software


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script to look for new version of software
# 1  
Old 09-28-2011
Script to look for new version of software

Bit of a long shot but is there a way i can have a script check a website for new version of software and dwnload it .

and maybe email me when it downlaods

not sure if that is even possible, to make it even worse i have to give a username and password to be able to download it

thanks

Adam
# 2  
Old 09-28-2011
You could use curl or wget to download and scan the page for a string that indicates an update.
# 3  
Old 09-28-2011
any idea on how to do this?
This is not something i have ever heard of

or an y example i can have a look at
# 4  
Old 09-28-2011
if your using Linux you could set up the web page as a yum.repo and just do a yum upgrade and it will automatically pick up anything with a new version for you.

You could set the yum command up in cron and and add something to monitor what was upgraded.

If your using another OS then not sure.
# 5  
Old 09-28-2011
ok, how would i do that i am running linux fedora8
# 6  
Old 09-28-2011
you need to setup the website as a yum.repo, try the following link.

How to set up YUM Repository on Redhat and Fedora | Linux Internetworks
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. AIX

Third party software location and their version in Aix

Hi All, I am new to Aix server. I want to search the location of third party software installed on aix. I checked at location /usr/local as well as /opt. Is it the correct location for third party software installed location? If yes, then how to check their version? If not, kindly... (5 Replies)
Discussion started by: manjusharma128
5 Replies

2. Shell Programming and Scripting

Copy a file from directroy/ prior version to the directory/ new version

How to copy a file from directroy/ prior version to the directory/ new version automatically. (4 Replies)
Discussion started by: roy1912
4 Replies

3. Shell Programming and Scripting

Need an advanced version of this script

Hi there, i am completely new to this great forum and to linux. Since 3 days i work with Ubuntu Lucid Lynx and i love the powers of the shell. This script helped me a lot to understand the process a little bit. Now my problem. I have this data set, tab delimited: ... (4 Replies)
Discussion started by: shasha7
4 Replies

4. OS X (Apple)

Software Update reporting script

I need a script that gets the output of softwareupdate -al on each machine (the list of available updates) and reports how many updates are needed in total by all the machines on the network, and the results to 4 different recipients. i.e. total patches required = 12 hostname1 =4 patch(es)... (1 Reply)
Discussion started by: glev2005
1 Replies

5. UNIX for Dummies Questions & Answers

Find Software Version

Hi, Is there anyway to find what version of a software is installed on a particular box ? For Tru64 unix, the setld -i command lists all the software that is installed. But how do i get the version ? is there a unix command for this? Is setld specific to Tru64 ? Do reply VJ (1 Reply)
Discussion started by: vjsony
1 Replies
Login or Register to Ask a Question