Skip to content

Instantly share code, notes, and snippets.

@hugows
Last active December 18, 2018 14:03
Show Gist options
  • Save hugows/15cd181131c5d9d9627293829e7e95ae to your computer and use it in GitHub Desktop.
Save hugows/15cd181131c5d9d9627293829e7e95ae to your computer and use it in GitHub Desktop.

Helpful linux tips

Handy aliases I always type again:

alias sai='sudo apt install -y'
alias sas='sudo apt-cache search'
alias gc="git clone"
alias sshhugo="sshpass -p 'mypass' ssh myserver.com"
alias psqlacme="PGPASSWORD=acmepass psql -h localhost -U acme acmedb"

Replace single line in a file, saving a backup with .orig extension:

sudo sed -i.orig  '/local\s*all\s*postgres\s*peer/ s/peer/md5/' /etc/postgresql/10/main/pg_hba.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment