我试图使用bash中的一些东西向我显示打印而不是解释的文件中的行结束符。该文件是从SSIS/SQL Server中转储的,由Linux机器读入以进行处理。
在vi中有任何开关,少,多,等等? 除了看到行结束符,我还需要知道它是什么类型的行结束符(CRLF或LF)。我怎么知道呢?
我试图使用bash中的一些东西向我显示打印而不是解释的文件中的行结束符。该文件是从SSIS/SQL Server中转储的,由Linux机器读入以进行处理。
在vi中有任何开关,少,多,等等? 除了看到行结束符,我还需要知道它是什么类型的行结束符(CRLF或LF)。我怎么知道呢?
当前回答
您可以使用文件实用程序来指示行结束符的类型。
Unix:
$ file testfile1.txt
testfile.txt: ASCII text
“DOS”:
$ file testfile2.txt
testfile2.txt: ASCII text, with CRLF line terminators
将“DOS”转换为Unix:
$ dos2unix testfile2.txt
从Unix转换到DOS:
$ unix2dos testfile1.txt
转换一个已经转换的文件没有效果,所以盲目运行是安全的(即不先测试格式),尽管通常的免责声明适用,一如既往。
其他回答
您可以使用xxd显示文件的十六进制转储,并查找“0d0a”或“0a”字符。
你可以使用cat -v <filename>,就像@warriorpostman建议的那样。
可以使用命令todos filename转换为DOS结尾,使用命令fromdos filename转换为UNIX行结尾。要在Ubuntu上安装软件包,输入sudo apt-get install tofrodos。
You can use vim -b filename to edit a file in binary mode, which will show ^M characters for carriage return and a new line is indicative of LF being present, indicating Windows CRLF line endings. By LF I mean \n and by CR I mean \r. Note that when you use the -b option the file will always be edited in UNIX mode by default as indicated by [unix] in the status line, meaning that if you add new lines they will end with LF, not CRLF. If you use normal vim without -b on a file with CRLF line endings, you should see [dos] shown in the status line and inserted lines will have CRLF as end of line. The vim documentation for fileformats setting explains the complexities.
另外,我没有足够的点来评论notepad++的答案,但如果你在Windows上使用notepad++,使用查看/显示符号/显示行结束菜单来显示CR和LF。在本例中显示LF,而对于vim, LF由新行表示。
Vim -总是将Windows换行符显示为^M
如果你喜欢在vim渲染中总是看到Windows换行符为^M,你可以将这行添加到你的.vimrc中:
set ffs=unix
这将使vim将您打开的每个文件解释为unix文件。由于unix文件以\n作为换行符,具有\r\n换行符的windows文件仍将正确呈现(多亏了\n),但在文件的末尾将有^M(这就是vim呈现\r字符的方式)。
Vim -有时显示Windows换行符
如果您更喜欢在每个文件的基础上设置它,您可以在编辑给定文件时使用:e++ ff=unix。
Vim -始终显示文件类型(unix vs dos)
如果您希望vim的底线始终显示您正在编辑的文件类型(并且您没有强制将文件类型设置为unix),您可以添加到您的状态行 设置statusline+=\ %{&fileencoding?&fileencoding:&encoding}。
我的完整状态线如下所示。只需将其添加到您的.vimrc。
" Make statusline stay, otherwise alerts will hide it
set laststatus=2
set statusline=
set statusline+=%#PmenuSel#
set statusline+=%#LineNr#
" This says 'show filename and parent dir'
set statusline+=%{expand('%:p:h:t')}/%t
" This says 'show filename as would be read from the cwd'
" set statusline+=\ %f
set statusline+=%m\
set statusline+=%=
set statusline+=%#CursorColumn#
set statusline+=\ %y
set statusline+=\ %{&fileencoding?&fileencoding:&encoding}
set statusline+=\[%{&fileformat}\]
set statusline+=\ %p%%
set statusline+=\ %l:%c
set statusline+=\
它会渲染成
.vim/vimrc\ [vim] utf-8[unix] 77% 315:6
在你文件的底部
Vim -有时显示文件类型(unix vs dos)
如果你只是想看看你有什么类型的文件,你可以使用:set fileformat(如果你强制设置文件类型,这将不起作用)。它将为unix文件返回unix,为Windows文件返回dos。
您可以使用文件实用程序来指示行结束符的类型。
Unix:
$ file testfile1.txt
testfile.txt: ASCII text
“DOS”:
$ file testfile2.txt
testfile2.txt: ASCII text, with CRLF line terminators
将“DOS”转换为Unix:
$ dos2unix testfile2.txt
从Unix转换到DOS:
$ unix2dos testfile1.txt
转换一个已经转换的文件没有效果,所以盲目运行是安全的(即不先测试格式),尽管通常的免责声明适用,一如既往。