I took an online UNIX
course and came across this issue that I am stuck with. Would thank for any help!
You are provided with a set of files, each of which contains personal data about individuals. Each file is laid out in the following format, with one file per person:
name:Niko Tanaka age:41 occupation:Doctor
I know the answer should be in the form:
n=$(awk -F: ' / /{print }' filename)
source share