BASH - Files - Delete a field from each line in a file
Remove the second field in each line and then print it.
awk
'{ $1 = ""; print }'
filename