79751421

Date: 2025-08-30 21:13:39
Score: 0.5
Natty:
Report link

You can specify more than one character in the cut command.

while read input; do echo -n $input | cut -c2,7; done

also ranges like -c1-10

also:

cut -c2,7

works

the command will not end until ctrl-d (end of file)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: helper