This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script for installing tmux & htop on systems where you don't have root access. | |
# tmux & htop will be installed in $HOME/.local/bin. | |
# exit on error | |
set -e | |
# Required commands for script | |
if ! command -v wget >/dev/null 2>&1; then |