I know the thread here which proposals (... | cut -c 80
) however give single letter outputs like n r s t p
. I do
# https://unix.stackexchange.com/a/293147/16920
find -L $(find . -type l -name 'Math*') -name '*.tex' -exec fgrep word /dev/null {} +
Some matches have too much content which I would like to cut; most other matches are ok but long-one liners are a problem in contents
...
/Math/16.5.2014.tex:Feedback Control of Hormone SecrAlthough the plasma concentrations of many hormones fluctuate in response to various stimuli that occur throughout the day, all hormones studied thus far appear to be closely controlled. In most instances, word [lot more]
...
expand
andcut
. – Léo Léopold Hertz 준영 Jul 01 '16 at 04:50cut
,col
,pr
,fmt
(maybe others).sed
,awk
,perl
etc. are higher level, and a lot more complicated. – Satō Katsura Jul 01 '16 at 04:54... | cut -c 80
? I think the problem in combiningexpand
into it or no tab-delimitation here. – Léo Léopold Hertz 준영 Jul 01 '16 at 04:55cut -c -80
. – Satō Katsura Jul 01 '16 at 04:57