GitHub

Templates


You can immediately start using Bee by registering the following list of aliases:

bee -register https://raw.githubusercontent.com/gobi-tools/bee-website/main/starter/starter_aliases

This will contain a number of useful Unix, Linux and Mac commands:

# get available fisk space
alias df="df -h"
    
# sort file by size
alias lt='du -sh * | sort -h'
    
# succint mnt
alias mnt='mount | grep -E ^/dev | column -t'
    
# view only mounted drives
alias mnt-only="mount | awk -F' ' '{ printf \"%s\t%s\n\",\$1,\$3; }' | column -t | egrep ^/dev/ | sort"
    
# see all bash history
alias bash-history='history|grep bash'
    
# returns file count
alias count-files='find . -type f | wc -l'
    
# move to trash
alias trash='mv --force -t ~/.Trash'
    
# Sort by Modification Time
alias left='ls -t -1'
    
# clear screen
alias c='clear'