Do the following:
ssh yourActualNetID@cl.linguistics.illinois.edu
echo -e "WWW\tXXX\tYYY\tZZZ" > ~/.who_am_I
cat ~/.who_am_I
You should see this:
WWW XXX YYY ZZZ
vi ~/.who_am_I
i
:w
:q
cat ~/.who_am_I
You should see something like this (except with your name and IDs):
Schwartz Lane lanes dowobeha
cat ~/.who_am_I | tail -n 1 | cut -f 2
You should see something like this (except with your first name):
Lane
cat ~/.who_am_I | tail -n 1 | cut -f 1
You should see something like this (except with your last name):
Schwartz
cat ~/.who_am_I | tail -n 1 | cut -f 4
You should see something like this (except with your Github ID):
dowobeha
cat ~/.who_am_I | tail -n 1 | cut -f 3
You should see something like this (except with your netID):
lanes
cat ~/.who_am_I | tail -n 1 | tr '\t' '\n' | wc -l
You should see exactly this:
4
If you see anything other than 4, or if any of the previous validation steps don’t match what you actually see, you have a problem with your file, and you will not receive credit for the assignment. The most common problem is the use of spaces instead of tabs. You must use tabs, not spaces, to separate the entries in the file.
exit