免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5596 | 回复: 2
打印 上一主题 下一主题

转换/r/n为换行符 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-10 16:35 |只看该作者 |倒序浏览

  1. ---
  2. acts_as_authenticated: "See: [url]http://technoweenie.stikipad.com/plugins/show/User+Authentication[/url]\r\n\
  3.   \r\n\
  4.   Install:\r\n\
  5.   >> ruby script/plugin source [url]http://svn.techno-weenie.net/projects/plugins[/url]\r\n\
  6.   >> ruby script/plugin install acts_as_authenticated\r\n\
  7.   \r\n\
  8.   Generate:\r\n\
  9.   >> ruby script/generate authenticated user account\r\n\
  10.   >> rake db:migrate\r\n\
  11.   \r\n\
  12.   To require logins for all actions, use this in your controllers:\r\n  before_filter :login_required\r\n\
  13.   \r\n\
  14.   To require logins for specific actions, use this in your controllers:\r\n  before_filter :login_required, :only => [ :edit, :update ]\r\n\
  15.   \r\n\
  16.   To skip this in a subclassed controller:\r\n  skip_before_filter :login_required\r\n\
  17.   \r\n\
  18.   Here are other available methods for your views and controllers:\r\n    * logged_in? \xE2\x80\x93 Returns true if the user is currently logged in.\r\n    * current_user \xE2\x80\x93 Returns an instance of the currently logged in user.\r\n\
  19.   \r\n\
  20.   You can override the #protect? method in your controller to only protect certain actions:\r\n\
  21.   \r\n  # don't protect the login and the about method\r\n  def protect?(action)\r\n    if ['login', 'about'].include?(action)\r\n       return false\r\n    else\r\n       return true\r\n    end\r\n  end\r\n\
  22.   \r\n\
  23.   You can also override #authorized? in your controller to restrict the actions based on the user:\r\n\
  24.   \r\n  # only allow nonbobs\r\n  def authorized?(user)\r\n    user.login != \"bob\" \r\n  end"

复制代码


上面有很多今人恶心的 \r\n 有些是 \r\n\
如何把它们转换成 换行符呢?
例如:

  1. You can also override #authorized? in your controller to restrict the actions based on the user:\r\n\
  2.   \r\n  # only allow nonbobs\r\n  def authorized?(user)\r\n    user.login != \"bob\" \r\n  end"
复制代码

换成

  1. You can also override #authorized? in your controller to restrict the actions based on the user:

  2. # only allow nonbobs
  3.   def authorized?(user)
  4.     user.login != \"bob\"
  5.   end"
复制代码

注意不是出来^m,是转换成实际的换行符……
如果使用 sed -i 's/\\r\\n/^m/' *
在文本文件中观看只是将\r\n转换成 蓝色^m 而已

论坛徽章:
5
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015年亚洲杯之朝鲜
日期:2015-03-13 22:47:33IT运维版块每日发帖之星
日期:2016-01-09 06:20:00IT运维版块每周发帖之星
日期:2016-03-07 16:27:44
2 [报告]
发表于 2008-10-10 16:52 |只看该作者

回复 #1 wosmvp 的帖子

  1. sed 's/\\r\\n\\\{0,1\}/\n/g' urfile
复制代码

论坛徽章:
0
3 [报告]
发表于 2008-10-10 17:01 |只看该作者
原帖由 blackold 于 2008-10-10 16:52 发表
sed 's/\\r\\n\\\{0,1\}/\n/g' urfile


:wink: 谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP