ubuntu - Linux环境下如何将utf-8格式文件转变成无bom的utf-8格式文件?

 Mrheartheart 发布于 2022-11-07 22:42

基于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格式文件?

1 个回答
  • 用 Vim 打开,

    :set nobomb
    :wq
    

    或者用 tail 命令:

    tail -c +4 old_file > new_file
    
    2022-11-12 01:43 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有