OTP-sh/count_bytes.sh

9 lines
150 B
Bash
Raw Normal View History

2020-07-06 21:05:08 +00:00
count_bytes() {
printf "%s" "$1"|od -A n -t x1|
tr -s "[:space:]"|
sed -e "1s/[[:space:]]//"\
-e "s/.../&\n/g"|
tr -s "[:space:]"|
wc -l
}