我想只读取文本文件的前8个字符,并将其保存到bash中的变量。有没有办法使用只是bash?
你可以问头读取一些字节。对于您的具体情况:
原文链接:https://www.f2er.com/bash/388391.html$ head -c 8 <file>
或在变量中:
foo=$(head -c 8 <file>)
$ head -c 8 <file>
或在变量中:
foo=$(head -c 8 <file>)