ubuntu - Linux环境下如何将utf-8格式文件转变成无bom的utf-8格式文件?
高洛峰
高洛峰 2017-04-17 11:21:17
0
1
555

基于Octopress搭建的博客,使用rake generate生成博客的时候会报如下的错误:

## Generating Site with Jekyll
identical source/stylesheets/screen.css 
Configuration from /srv/octopress/_config.yml
Building site: source -> public
Liquid Exception: incompatible encoding regexp match (ASCII-8BIT regexp with UTF-8 string) in page
/srv/octopress/plugins/category_list_tag.rb:9:in `gsub'
/srv/octopress/plugins/category_list_tag.rb:9:in `block in render'
/srv/octopress/plugins/category_list_tag.rb:6:in `each'
/srv/octopress/plugins/category_list_tag.rb:6:in `render'

参阅了网上的一些说明,是因为utf-8格式格式造成的,所以请问Linux环境下如何将utf-8格式文件转变成无bom的utf-8格式文件?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(1)
阿神

Open with Vim,

:set nobomb
:wq

Or use tail command:

tail -c +4 old_file > new_file
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!