fetchfetch.sh 526 B

1234567891011121314151617181920212223
  1. #! /usr/bin/env bash
  2. # Fetch some files needed for starting to fetch and install Reduce.
  3. r=https://sourceforge.net/p/reduce-algebra/code/HEAD/tree
  4. wget $r/trunk/fetchreduce.sh\?format=raw -O fetchreduce.sh
  5. # Edit this file so that the platform relevant to you is the one that is
  6. # not commented out.
  7. m=scientific-linux-sanity-check.sh
  8. #m=fedora-sanity-check.sh
  9. #m=ubuntu-sanity-check.sh
  10. #m=cygwin-sanity-check.sh
  11. #m=macports-setup.sh
  12. wget $r/trunk/scripts/$m\?format=raw -O $m
  13. ls -l fetchreduce.sh $m
  14. # end of script