5 lines
78 B
Bash
Executable File
5 lines
78 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
echo -n "$@" | wc -c | awk '{print $1}'
|