mirror of
https://github.com/penpot/penpot.git
synced 2025-06-19 03:21:37 +02:00
12 lines
237 B
Bash
12 lines
237 B
Bash
#!/usr/bin/env bash
|
|
|
|
alias l='ls --color -GFlh'
|
|
alias rm='rm -r'
|
|
alias ls='ls --color -F'
|
|
alias lsd='ls -d *(/)'
|
|
alias lsf='ls -h *(.)'
|
|
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc.local" ]; then
|
|
. "$HOME/.bashrc.local"
|
|
fi
|