What is the most straightforward way, using Linux command line utilities, to print a specific range of characters for each line read on stdin?

For example, for this input file:

1234567890
0987654321

It should work as follows:

> cat input_file | foo 3-6
3456
8765
link|improve this question

+1 cool question. – Doc Sep 28 '11 at 23:24
feedback

1 Answer

up vote 3 down vote accepted

Answered my own question... that was much easier than I thought:

cut -c 3-6
link|improve this answer
+1 I learn(deded) something. – Doc Sep 28 '11 at 23:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.