B:BD[
4.16238] → [
4.16238:16476]
∅:D[
4.16476] → [
3.8343:8433]
B:BD[
3.8343] → [
3.8343:8433]
B:BD[
3.8797] → [
3.8797:8902]
B:BD[
3.9130] → [
3.9130:9216]
B:BD[
3.9216] → [
4.16477:16648]
##############################
alias cp='cp -iv' # copy a file with the verbose and warning flags
alias mv='mv -iv' # move a file/dir with verbose and warning flags
alias mkdir='mkdir -pv' # make directory with the path and verbose flags
alias cd..='cd ../' # Go back 1 directory level (for fast typers)
alias finder='open -a Finder ./' # finder: Opens current directory in MacOS Finder
alias path='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths
alias lr='ls -R | grep ":$" | sed -e '\''s/:$//'\'' -e '\''s/[^-][^\/]*\//--/g'\'' -e '\''s/^/ /'\'' -e '\''s/-/|/'\'' | less' # lr: Full Recursive Directory Listing
#####################
alias cp='cp -iv' # copy a file with the verbose and warning flags
alias mv='mv -iv' # move a file/dir with verbose and warning flags
alias mkdir='mkdir -pv' # make directory with the path and verbose flags
alias cd..='cd ../' # Go back 1 directory level
alias finder='open -a Finder ./' # Open current directory in MacOS Finder
alias path='echo -e ${PATH//:/\\n}' # Echo all executable Paths
alias numFiles='echo $(ls -1 | wc -l)' # Count of non-hidden files in current dir