Hey all!
I am trying to get part of a line that prints out when I echo is in terminal.
currently it prints link this,
returned:first.last
I would like it to print like this,
first.last
I've tried awk print but it counts the whole line as one column.
I've tried to grep -v returned:
but I end up with nothing
I've tried tr -d returned:
and I get
firs.las
basically it is removing those letters from everywhere in the printout period and not just in that order or that word.
how can I do this?
Note: first.last is just an example. This will be an employee name.
