Skip to content

Instantly share code, notes, and snippets.

@potat-dev
Last active July 18, 2026 21:24
Show Gist options
  • Select an option

  • Save potat-dev/33c144797d6c98a6dbc954c53c3120ad to your computer and use it in GitHub Desktop.

Select an option

Save potat-dev/33c144797d6c98a6dbc954c53c3120ad to your computer and use it in GitHub Desktop.

Collection of Useful Things

Docker One Line Install

curl -fsSL get.docker.com | sh

List Files And Directories

Paste this into ~/.bashrc

export LS_OPTIONS='-h --color=auto --group-directories-first'
eval "$(dircolors)"
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment