fixup! [zsh] add a couple of aliases to numfmt

This commit is contained in:
Dmytro Meleshko 2021-05-15 22:00:13 +03:00
parent 280606b2b0
commit cbaeeb2f13
1 changed files with 1 additions and 1 deletions

View File

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