gpt4 book ai didi

Linux 命令(如 cat)读取指定数量的字符

转载 作者:IT老高 更新时间:2023-10-28 12:23:45 25 4
gpt4 key购买 nike

linux中有没有类似cat的命令可以从文件中返回指定数量的字符?

例如,我有一个文本文件,例如:

Hello world
this is the second line
this is the third line

我想要返回前 5 个字符的内容,即“hello”。

谢谢

最佳答案

head 也可以:

head -c 100 file  # returns the first 100 bytes in the file

..将提取前 100 个字节并返回它们。

使用 head 的好处在于 tail 的语法匹配:

tail -c 100 file  # returns the last 100 bytes in the file

您可以将这些组合起来以获得字节范围。例如,要从文件中获取 second 100 个字节,请使用 head 读取前 200 个字节,然后使用 tail 获取最后 100 个字节:

head -c 200 file | tail -c 100

关于Linux 命令(如 cat)读取指定数量的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/218912/

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