Useful Commands

Change default shell:

chsh -s /bin/bash $USER

Create GIF with your screen view:

sudo apt install -y peek && peek

fuck : The Fuck is a magnificent app that corrects errors in previous console commands. Install script:

#!/usr/bin/env bash
sudo apt update
sudo apt install python3-dev python3-pip python3-setuptools python3-venv
python3 -m venv ~/.config/thefuck
source ~/.config/thefuck/bin/activate
pip install setuptools
pip install git+https://github.com/nvbn/thefuck.git
echo 'export PATH="$HOME/.config/thefuck/bin:$PATH"' >> ~/.bashrc
fuck
fuck

Remove unused packages

sudo apt autoremove

Last updated