gpt4 book ai didi

shell - 使用 sed,如何打印一行的前 'N' 个字符?

转载 作者:行者123 更新时间:2023-12-03 04:54:48 24 4
gpt4 key购买 nike

使用sed什么是单行打印前n个字符?我正在执行以下操作:

grep -G 'defn -test.*' OctaneFullTest.clj  | sed ....

最佳答案

不要使用sed,使用cut:

grep .... | cut -c 1-N

如果您必须使用sed:

grep ... | sed -e 's/^\(.\{12\}\).*/\1/'

关于shell - 使用 sed,如何打印一行的前 'N' 个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/538664/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com