Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 bash 比较两个文本文件diff。我有两个相同的(眼睛)文件,据我了解,差异返回,每一行都不一样?
diff
diff "file1" "file2" 1,11c1,11 < 2 < 1 < 2 < 1 < 2 < 1 < 2 < 1 < 2 < 1 < 2 --- > 2 > 1 > 2 > 1 > 2 > 1 > 2 > 1 > 2 > 1 > 2
不确定 Mac 中的 GUI 编辑器是什么,但假设您使用的是 OS X,您可以使用终端并使用vi. 打开文件后,键入:set list以显示行尾并:set nolist恢复。 :set ff会给你它是 Unix 还是 DOS 类型的文件。
vi
:set list
:set nolist
:set ff
从那里删除每一个,或者您可以使用unix2dosordos2unix实用程序在两种格式之间进行转换。
unix2dos
dos2unix