File contains
Today is 1 nice day
This is a perfect day
Tomorrow is 1/2 cool 1/2 hot day
What is Toy Story
Tonight is a dark night
How do I find lines
starts with "To" and
end with "day"
None of these commands are working
awk '/^To[*]day$/ {print}' file
awk '/^To*day$/ {print}' file
awk '/^To.day$/ {print}' file
awk '/^To[.]day$/ {print}' file
THANKS!