Skip to content

Latest commit

 

History

History
26 lines (13 loc) · 557 Bytes

File metadata and controls

26 lines (13 loc) · 557 Bytes

set ff = linux

1、使用说明

set ff=unix : 告诉 vi 编辑器,使用unix换行符。

2、使用情况

有时候在Linux中执行.sh脚本,会出现异常/bin/sh^M: bad interpreter: No such file or directory。原因很可能是你在windows下编写的脚本文件,放到Linux中无法识别格式。

同样的回车,在windows中是一个字节,在Linux中是两个字节

3、如何使用

vim  xx.sh
esc > : > set ff=unix > enter > 文件结尾

保存退出