Compare commits

..

No commits in common. "ea465554889e5d2af58afb963d0056e515de8b46" and "aab6ad2098d9766d2282522574fcb513688e16d3" have entirely different histories.

View file

@ -2,7 +2,7 @@
count() { print -r -- "$#"; }
bytecount() { wc -c "$@" | numfmt --to=iec-i --suffix=B; }
bytecount() { wc -c "$@" | bytefmt2; }
mkcd() { mkdir -p "$@" && cd "${@[-1]}"; }