Skip to content

Instantly share code, notes, and snippets.

View tarator's full-sized avatar

Georg Abenthung tarator

View GitHub Profile
@tarator
tarator / useful-one-liners.sh
Created January 13, 2022 22:50 — forked from johnnypea/useful-one-liners.sh
Useful one liners
# Run the last command as root
sudo !!
# Serve current directory tree at http://$HOSTNAME:8000/
python -m SimpleHTTPServer
# Save a file you edited in vim without the needed permissions
:w !sudo tee %
# change to the previous working directory
cd -
# Runs previous command but replacing
^foo^bar