检查 UNIX 上的 DOS 文件

发布于 2024-10-11 03:05:04 字数 279 浏览 3 评论 0原文

我想检查特定目录中是否存在任何 DOS 文件。 除了 ^M 字符之外,有什么方法可以区分 DOS 文件和 UNIX 文件吗?

我尝试使用文件,但它给出了相同的输出。

$ file test_file
test_file: ascii text

转换后:

$ unix2dos test_file test_file
$ file test_file.txt
test_file.txt: ascii text

I want to check whether any DOS files exist in any specific directory.
Is there any way to distinguish DOS files from UNIX apart from the ^M chars ?

I tried using file, but it gives the same output for both.

$ file test_file
test_file: ascii text

And after conversion:

$ unix2dos test_file test_file
$ file test_file.txt
test_file.txt: ascii text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

信愁 2024-10-18 03:05:04

CRLF (\r\n, ^M) 行结尾字符是 Unix 和 DOS/Windows ASCII 文件之间的唯一区别,所以不,没有其他方法。

如果您必须 fromdos 命令,您可能会尝试将其输出与原始输出进行比较file:

file=test_file
fromdos < $file | cmp $file -

如果 fromdos 剥离任何 \r ,则此操作失败(非零 $?)。

dos2unix 可能以类似的方式使用,但我不知道它的确切语法。

The CRLF (\r\n, ^M) line endings chars are the only difference between Unix and DOS/Windows ASCII files, so no, there's no other way.

What you might try if you have to fromdos command is to compare its output with the original file:

file=test_file
fromdos < $file | cmp $file -

This fails (non-zero $?) if fromdos stripped any \r away.

dos2unix might be used in a similar way, but I don't know its exact syntax.

离笑几人歌 2024-10-18 03:05:04

如果您确实输入了 Windows 换行符,您将看到 file 的以下输出:

 test_file.txt: ASCII text, with CRLF line terminators

If you actually put Windows newlines in, you'll see the following output from file:

 test_file.txt: ASCII text, with CRLF line terminators
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文