- Read input from the user until you get empty string
- For each of the lines you read, count the number of characters and print it
- You must use a while loop
- Assume at least three lines of input
#!/usr/bin/env bash
echo -n "Please insert your input: "
while read line; do
echo -n "$line" | wc -c
echo -n "Please insert your input: "
done