9 lines
197 B
Bash
9 lines
197 B
Bash
#!/bin/bash
|
|
|
|
install_btop() {
|
|
sudo apt install coreutils sed git build-essential gcc g++
|
|
git clone https://github.com/aristocratos/btop.git
|
|
cd btop
|
|
sudo make
|
|
sudo make install
|
|
} |