Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- ARC="https://github.com"$(curl -sL https://github.com/jemalloc/jemalloc/releases | grep -Eo "/[a-zA-Z0-9\./-]+bz2" | awk 'NR==2')
- ARCF=$(basename $ARC)
- curl -sL "$ARC" > $ARCF
- tar xjf $ARCF && pushd ${ARCF%.tar.bz2} > /dev/null && {
- ./configure && sudo make && sudo make install
- } > /dev/null
- popd > /dev/null
Add Comment
Please, Sign In to add comment