使用sed,打印前n个字符的单个衬垫是什么.我正在做以下事情.
grep -G 'defn -test.*' OctaneFullTest.clj | sed ....
Paul Tomblin.. 190
不要使用sed,使用切割.
grep .... | cut -c 1-N
如果你必须使用sed:
grep ... | sed -e 's/^\(.\{12\}\).*/\1/'
小智.. 43
colrm x
例如,如果您需要前100个字符:
cat file |colrm 101
它已存在多年,并且在大多数linux和bsd(肯定是freebsd)中,通常是默认情况下.我不记得曾经打字过apt-get install colrm
.
不要使用sed,使用切割.
grep .... | cut -c 1-N
如果你必须使用sed:
grep ... | sed -e 's/^\(.\{12\}\).*/\1/'
colrm x
例如,如果您需要前100个字符:
cat file |colrm 101
它已存在多年,并且在大多数linux和bsd(肯定是freebsd)中,通常是默认情况下.我不记得曾经打字过apt-get install colrm
.
也不必使用grep
一个例子:
sed -n '/searchwords/{s/^\(.\{12\}\).*/\1/g;p}' file
严格使用sed:
grep ... | sed -e 's/^\(.\{N\}\).*$/\1/'