File: get.miplib2010

package info (click to toggle)
coinor-cbc 2.9.9%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,848 kB
  • ctags: 5,787
  • sloc: cpp: 104,337; sh: 8,921; xml: 2,950; makefile: 520; ansic: 491; awk: 197
file content (13 lines) | stat: -rwxr-xr-x 219 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

for file in `cat miplib2010-candidates.test` 
do 
  if test -f $file 
  then 
    echo $file exists
  else 
    cd miplib2010-candidates/
    wget http://miplib.zib.de/miplib2010/$file
    cd .. 
  fi 
done