mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-04-21 06:03:41 +00:00
11 lines
207 B
Bash
11 lines
207 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
PS1="\[\e[1;94m\][\u@\h \w]\\$\[\e[0m\] "
|
|
|
|
alias ls='ls --color=auto'
|
|
alias ll='ls --color=auto -lah'
|
|
alias mydf='df -hPT | column -t'
|
|
alias mylsblk='lsblk -o name,size,fstype,label,model'
|
|
|