miejsce jako ograniczenie w poleceniu Cut

# taking the 2nd value (after space character)
awk '{print $2}'
or
tr -s ' ' | cut -d ' ' -f 2
Lazy Lizard