echo 'Nur ein Test Beispiel' | perl -nE 'say +( split /\s+/ )[2]; '
2016-11-11T10:33:21 LinuxerIch wüsste nicht, dass split im void Context automatisch eine vordefinierte Variable füllt.
echo 'Nur ein Test Beispiel' | perl -ne '@a=split(/\s+/); print "$a[2]\n"'
2016-11-11T18:03:11 GwenDragonDas ist ja dass tolle, das Perl auch "awken" kann.
QuoteIf you want to improve your basketball-skills, train basketball.
echo 'Nur ein Test Beispiel' | awk -F " " '{print $3}'