summaryrefslogtreecommitdiff
path: root/packaging/getpatches
blob: 4cee227e1c59052863f3ec2448d2872085b34b91 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
VERSION=4.8.30

if [ ! $DELETE = false ]
then
  DELETE=true
fi

wget http://www.oracle.com/technology/products/berkeley-db/db/update/$VERSION/patch.$VERSION.html -r -l1
for file in `find www.oracle.com/ -name "patch\.*" | grep -v html`; do cp $file .; done