Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
awk -F '[: ]' '{print $2}' /path/to/input
awk '{gsub(/.*:/,"",$1);print $1}' /path/to/input
awk '{print $2}' /path/to/input
awk '{gsub(/.*: ?/,"");print}' /path/to/input