WizardKit/setup/macos/aliases
2Shirt 5b4139e3c8
Add missing live-macos branch
This was not being pushed from a testing MacBook so I'm adding it all
at once. This is unfinished, still needs scripts to prep the working
macOS env from which the live env is built.

El Capitan code is likely to be dropped completely. Installing or
compiling dependencies in brew is problematic at this point.
2021-03-26 01:18:08 -06:00

16 lines
526 B
Text

alias cdtmp='cd "$(mktemp -d)"'
alias du='du -sch'
alias fix-perms='find -type d -exec chmod 755 "{}" \; && find -type f -exec chmod 644 "{}" \;'
alias less='less -S'
alias mkdir='mkdir -p'
alias mv='mv -nv'
alias q1=' ls -1'
alias q1a=' ls -1A'
alias q=' ls -lh'
alias qa=' ls -lAh'
alias qs=' ls'
alias qsa=' ls -A'
alias rm='rm -v'
alias rmdirs='find -depth -mindepth 1 -type d -exec rmdir "{}" --ignore-fail-on-non-empty \;'
alias tmux='tmux -f /etc/tmux.conf -S /Volumes/RAM_Disk/.tmux.socket'
alias vim='vim -u /.vimrc'