`

syntax error: unexpected end of file

阅读更多

dos文件转换成unix文件格式
    dos
格式文件传输到unix系统时,会在每行的结尾多一个^M,当然也有可能看不到,但是在vi的时候,会在下面显示此文件的格式,比如 "dos.txt" [dos] 120L, 2532C 字样,表示是一个[dos]格式文件,如果是MAC系统的,会显示[MAC],因为文件格式的原因有时会导致我们的unix程序,或者shell程序出现错误,那么需要把这些dos文件格式转换成unix格式,方法是
     vi   dos.txt         
     :set fileformat=unix
     :w                  
    
这样文件就转换成unix格式文件了,一般在windows机器上编写好了文件传到unix下就可能会出现这样的情况,而一般我们使用ftp命令,常常会加上bin参数表示二进制传输,可是试一下加asc参数,可能传到unix下就是unix格式

分享到:
评论

相关推荐

    CentOS7运行.sh脚本提示syntax error: unexpected end of file的解决方法

    CentOS 7运行.sh脚本提示syntax error: unexpected end of file。脚本是通过本地电脑的notepad++编辑之后用ftp上传到CentOS 7服务器上的。 错误原因: shell脚本在本地电脑编辑的,格式是dos(可以用vi编辑该shell...

    PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法

    在PHP编程过程中,可能会遇到各种类型的错误,其中“Parse error: syntax error, unexpected end of file”是一个常见的编译时错误,意味着解析器在文件末尾遇到了意外的情况,通常是因为代码的语法不正确导致的。...

    php异常:Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE eval()'d code error

    针对这些知识点,我们在实际编程中应当如何操作来避免这类“Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE eval()’d code error”错误呢? - 在使用eval()函数时,务必要对输入的字符串进行...

    解决winpcap在vc6编译的错误

    winpcap 4.1.1在vc6下编译会出现以下错误,原因是vc6.0并不完美支持c++99标准,在64位cpu中...' before type 'unsigned int' c:\wpdpack\include\pcap-stdinc.h(79) : fatal error C1004: unexpected end of file found

    最常见的VC++编译错误信息_fatal_error

    1. Fatal Error C1010:unexpected end of file while looking for precompiled header directive 这是一个常见的编译错误,原因是编译器在寻找预编译头文件时遇到了不该遇到的文件尾。解决方法是包含正确路径的#...

    20种VC++编译错误信息

    fatal error C1010: unexpected end of file while looking for precompiled header directive **描述**:此错误发生在预编译头文件(如`stdafx.h`)未正确包含的情况下。 **解决方案**: - 确保在项目设置中正确...

    VC6.0错误指令及解决方法

    fatal error C1083: Cannot open include file: 'stio.h': No such file or directory 尝试包含一个不存在的头文件,`stio.h`是错误的文件名,正确的应该是`stdio.h`。 **解决方法:** - 将`stio.h`更正为`stdio....

    c++常见20个编译错误

    1、fatal error C1010: unexpected end of file while looking for precompiled header directive。 此错误通常是由于没有#include "stdafx.h"引起的,即找不到预编译头文件的路径。 2、fatal error C1083: Cannot...

    VC++6.0编译及链接时常见问题的解决及_pragma.txt

    - **fatal error C1083: Cannot open include file: 'R.h': No such file or directory** - 确认文件路径是否正确,文件是否存在。 - **error C2011: 'C': 'class' type redefinition** - 确认类定义没有重复。 - ...

    C++常见错误汇总

    fatal error C1010: unexpected end of file while looking for precompiled header directive 这个错误是在寻找预编译头文件路径时遇到了不该遇到的文件尾。解决方法是:其一,即可含正确路径的#include "stdafx.h...

    Visul C++常见错误提示

    一、fatal error C1010: unexpected end of file while looking for precompiled header directive 这是因为没有包含预编译头文件“stdafx.h”,导致编译器无法找到预编译头文件。解决方法是添加#include "stdafx.h...

    c++编译时经常出现的错误

    fatal error C1010: unexpected end of file while looking for precompiled header directive. ``` **原因:** 此错误通常发生在未包含预编译头文件(如`stdafx.h`)的情况下。预编译头文件通常用于加速编译过程,...

    matlab常见错误总结

    9. **文件非正常结束 (error10: Unexpected end of file)**:源代码文件在应该有终止符号的地方结束了。检查文件末尾是否缺少必要的语句或结束标记。 10. **行太长 (error11: Line too long)**:MATLAB单行代码的...

    最常见的20种VC++编译错误信息集合

    **错误信息**:fatal error C1010: unexpected end of file while looking for precompiled header directive **解释**:在寻找预编译头文件指令时,意外地遇到了文件末尾。通常这意味着在应该包含预编译头文件...

    turbopascal编译错误和运行错误信息中英文对照表

    10. error 10: Unexpected end of file - 文件非正常结束 源代码文件在预期的终止位置之前就结束了。 11. error 11: Line too long - 行太长 代码行超过了 Turbo Pascal 允许的最大长度。 12. error 12: Type ...

    C语言常见错误.txt

    Argument list syntax error (参数列表语法错误) 当函数调用或宏调用时参数列表格式不正确,例如缺少逗号分隔或括号不匹配时,就会出现此错误。 **解决方法:** - 确保参数列表格式正确。 - 检查括号是否匹配。 ...

    C++实验常见出错信息

    - 如果遇到“Cannot open include file: 'R…….h': No such file or directory”的错误,检查文件路径是否正确,文件是否存在,以及文件名是否正确。 3. **编译错误** - **C2001**: “newline in constant”...

    C语言常见的语法错误

    1.fatal error Colo:unexpected end of file while looking for precompiled header directive. 该错误通常是由于没有包含预编译头文件“stdafx.h”,导致编译器无法找到预编译头文件的路径。解决方法是添加#...

Global site tag (gtag.js) - Google Analytics