79566874

Date: 2025-04-10 14:08:15
Score: 2
Natty:
Report link

I have no problem using cut, take a look:

STR='John  25  Developer     Alice  30   Manager   Bob  28  Analyst ';
CCC=`echo $STR | cut -d' ' -f2,5,8`
echo $CCC

Output:

25 30 28

https://onecompiler.com/bash/43ee7qmfy

can you try?

Reasons:
  • Whitelisted phrase (-2): can you try
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Xusar Code