[root@localhost ~]#dos2unix tr.py
-bash: dos2unix: command not found
安裝方法:
[root@localhost ~]#tar -zxf hd2u-1.0.0.tgz
[root@localhost ~]#cd hd2u-1.0.0
[root@localhost ~]#./configure
configuring hd2u 1.0.0
checking for gcc... gcc
checking for c compiler default output file name... a.out
checking whether the c compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the gnu c compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ansi c... none needed
checking for a bsd-compatible install... /usr/bin/install -c
checking for getopt_long in -lpopt... no
configure: error: *** libpopt not found
[root@localhost ~]#rpm -ivh popt-1.14-2rt.x86_64.rpm
[root@localhost ~]#cd hd2u-1.0.0
[root@localhost ~]#./configure&&make&&make install
[root@localhost ~]#whereis dos2unix
dos2unix: /usr/local/bin/dos2unix
安裝成功!
linux學習筆記 dos2unix命令
dos2unix命令用來將dos格式的文字檔案轉換成unix格式的。dos下的文字檔案是以 r n作為斷行的標誌,表示成十六進製制就是0d 0a。而unix下的文字檔案是以 n作為斷行標誌的,表示成十六進製制就是0a。dos格 式的文字檔案在linux地下,用較低版本的vi開啟時尾行會顯示 m,而且...
dos2unix整個目錄
因為經常在windos平台和linux平台之間協同開發,所以不可避免的就碰到了crlf的問題,dos2unix 和 unix2dos可以說是最常用的解決crlf問題的工具了。下面列出怎麼對整個目錄中的問題做dos2unix操作 find type f exec dos2unix 其中具體命令的解釋如...
dos2unix與unix2dos之學習記錄
1.unix2dos與dos2unix這兩個tool是用來幹什麼的?這首先應該要說明一下背景知識 unix類作業系統下,換行字元是 n 而早期的dos作業系統,其換行字元是由 r n組成。所以如果將unix系統下的文字檔案copy到dos系統下 或者將dos系統下的文字檔案拷貝到unix下可能會存在...