Skip to content

Instantly share code, notes, and snippets.

@fxrobin
Created March 3, 2024 14:02
Show Gist options
  • Select an option

  • Save fxrobin/434216335cd88c47561a4a0acaf5d4f5 to your computer and use it in GitHub Desktop.

Select an option

Save fxrobin/434216335cd88c47561a4a0acaf5d4f5 to your computer and use it in GitHub Desktop.

In ~/.bashrc

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

alias cls='clear'
alias lh='ls -gFh --group-directories-first --time-style=long-iso'
alias ..='cd ..'
alias e='exa --group-directories-first --long --time-style=long-iso --bytes'
alias run="docker compose up"


function mkcd {
    mkdir -p $1
    cd $1
}

function cl {
    cd $1
    lh
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment