您好,登錄后才能下訂單哦!
1.功能:DOS/MAC文件轉化成UNIX文件格式,功能跟notepad編輯器下的編輯-文檔格式轉換-轉換為UNIX格式一樣
2.安裝方式:yum install -y dos2unix
3.語法:
dos2unix [options] [-c convmode] [-o file ...] [-n infile outfile ...]
4.參數:
-h --help 幫助
-k --keepdate 時間戳保持不變
-q --quiet 靜默模式,不輸出告警和信息
Quiet mode. Suppress all warning and messages.
-c --convmode 設定轉化模式,模式有:ASCII, 7bit, ISO
-o --oldfile file 默認模式,將轉換后的文件直接寫到原文件中
-n --newfile infile outfile 將infile中的內容寫入到outfile中
5.例子
[mysql@mysql ~]$ ls -lh
total 12K
-rw-r--r--. 1 root root 31 Jun 29 15:43 echo_test.sh
-rw-r--r--. 1 root root 18 Jun 29 15:41 test.txt
-rw-r--r--. 1 mysql dba 68 Jun 23 22:47 week.txt
#中間把test.txt、week.txt刪除#
[mysql@mysql ~]$ dos2unix -k echo_test.sh
dos2unix: converting file echo_test.sh to UNIX format ...
[mysql@mysql ~]$ ls -lh
total 4.0K
-rw-r--r--. 1 mysql dba 30 Jun 29 15:43 echo_test.sh#時間戳未變
[mysql@mysql ~]$ dos2unix echo_test.sh
dos2unix: converting file echo_test.sh to UNIX format ...
[mysql@mysql ~]$ ls -lh
total 4.0K
-rw-r--r--. 1 mysql dba 30 Jun 29 16:03 echo_test.sh#時間戳變化
[mysql@mysql ~]$ dos2unix -n echo_test.sh test.sh
dos2unix: converting file echo_test.sh to file test.sh in UNIX format ...
[mysql@mysql ~]$ ls -lh
total 8.0K
-rw-r--r--. 1 mysql dba 30 Jun 29 16:03 echo_test.sh
-rw-r--r--. 1 mysql dba 30 Jun 29 16:03 test.sh
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。