参见英文答案 > How to detect file ends in newline? 7个
我有两个文件,一个有换行,一个没有:
文件:text_without_newline
$root@kali:/home#cat text_without_newline
This is a Testfile
This file does not contain a newline at the end
$root@kali:/home#
文件:text_with_newline
$root@kali:/home#cat text_with_newline
This is a Testfile
This file does contain a newline at the end
$root@kali:/home#
是否有命令或函数来检查文件末尾是否有换行符?
我已经找到了this解决方案,但它对我不起作用. (编辑:IGNORE:使用preg_match和PHP的解决方案也可以.)
最佳答案
只需输入:
原文链接:https://www.f2er.com/linux/440698.htmlcat -e nameofyourfile
如果有换行符,则以$符号结尾.
如果没有,它将以%符号结束.