Linux – 检查文件末尾是否有换行符

前端之家收集整理的这篇文章主要介绍了Linux – 检查文件末尾是否有换行符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > 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解决方案也可以.)

最佳答案
只需输入:

cat -e nameofyourfile

如果有换行符,则以$符号结尾.
如果没有,它将以%符号结束.

原文链接:https://www.f2er.com/linux/440698.html

猜你在找的Linux相关文章