You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
305 B
7 lines
305 B
#!/bin/bash
|
|
VERSION=`sed -rn 's/^Version:\s*([0-9.]+)/\1/p' aqute-bnd.spec`
|
|
wget https://github.com/bndtools/bnd/archive/$VERSION.REL.tar.gz
|
|
gunzip $VERSION.REL.tar.gz
|
|
tar tf $VERSION.REL.tar | grep -E '\.(.ar|exe|tar\.(gz|bz2|xz)|zip)$' | xargs tar --delete --file $VERSION.REL.tar
|
|
gzip $VERSION.REL.tar
|