RosettaCodeData/Task/String-length/UNIX-Shell/string-length-2.sh

4 lines
95 B
Bash
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
string='Hello, world!'
length=${#string}
echo $length # if you want it printed to the terminal