mirror of
https://github.com/fsquillace/junest.git
synced 2026-01-23 10:35:36 +00:00
13 lines
182 B
Bash
Executable file
13 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
set -ex
|
|
|
|
VERSION=$1
|
|
|
|
cd /tmp
|
|
wget http://ftp.gnu.org/gnu/bash/bash-$VERSION.tar.gz
|
|
|
|
tar -zxf bash-$VERSION.tar.gz
|
|
cd /tmp/bash-$VERSION*
|
|
./configure
|
|
make
|
|
sudo make install
|