Bash Get Field von der Linie
echo 'The Code Doctor' | cut -d ' ' -f2
The Code Doctor
echo 'The Code Doctor' | cut -d ' ' -f2
echo 'The Code Doctor' | awk '{print $2}'