Files
dotfiles/utils/.local/bin/len

5 lines
78 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail
echo -n "$@" | wc -c | awk '{print $1}'