Here's the one I use :-) #!/bin/bash
wget -q http://www.sagemath.org/download-latest.html -O /tmp/a fname="sage-$(grep "The latest development version is" /tmp/a | perl -ape "s/^.*\ is\ //g")" url="http://boxen.math.washington.edu/home/release/$fname/$fname.tar" echo "==> Je recupere Sage : $url" echo "==> Nom du fichier : $fname" echo "Let's roll ?" read a cd $HOME rm $HOME/.Sage/ -rf & wget "$url" -O $fname.tar tar xvf $fname.tar rm "$fname.tar" rm $HOME/.Sage/ -rf mv $fname .Sage cd .Sage Nathann -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To post to this group, send email to sage-devel@googlegroups.com. To unsubscribe from this group, send email to sage-devel+unsubscr...@googlegroups.com. Visit this group at http://groups.google.com/group/sage-devel?hl=en.