7 lines
241 B
Bash
Executable file
7 lines
241 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
alias em="emacs --no-init-file --no-splash --no-window-system"
|
|
alias ll="exa --binary --long"
|
|
alias la="ll --all"
|
|
alias tree="ll --tree"
|
|
alias llblk="lsblk -o NAME,TYPE,FSTYPE,SIZE,MOUNTPOINT,LABEL,PARTLABEL,UUID,PARTUUID"
|