bash 在 UNIX 中打印/获取文本文件中一行的第一个字符
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12731391/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-18 03:28:09 来源:igfitidea点击:
Print/Obtain first character of a line in a text file in UNIX
提问by Masterminder
Was wondering how you print/obtain the first character in a text file in unix.
想知道如何在 unix 中打印/获取文本文件中的第一个字符。
i.e say "9 textfile.txt" would return 9
即说“9 textfile.txt”将返回9
thx
谢谢
回答by kev
You can use headto get first char of file:
您可以使用head获取文件的第一个字符:
head -c 1 file.txt
If you want first char of every line:
如果你想要每一行的第一个字符:
grep -o ^. file.txt
Or
或者
cut -c 1 file.txt

