ruby逐行遍曆檔案

來源:互聯網
上載者:User

標籤:ruby   檔案列印   

ruby遍曆檔案內容,基本思路是逐行讀取逐行列印,也是比較普遍的方法:

#!/usr/bin/env ruby#Encoding:utf8file = File.open("/tmp/abc.txt")file.each_line do |line|  print lineendfile.close


另外一種寫法,一次性讀取一次性列印,相對耗費更多記憶體,小檔案場合比上面的方法更快。不推薦操作大檔案。

#!/usr/bin/env ruby# Encoding:utf8wholefile = File.read("/tmp/abc.txt")print wholefile


小結

1、第一種方法比較像sed,awk之類的流編輯器,第二種方法跟cat一樣暴力。

2、File.read不需要顯式關閉檔案控制代碼。


擴充

在開啟檔案前,判斷檔案是否存在

#!/usr/bin/env ruby# Encoding: utf8if File.exist?("/tmp/abc.txt")  file = File.open("/tmp/abc.txt")  file.each_line do |line|    print line  end  file.closeelse  puts "error:file not exist"end

逐行讀取,將檔案名稱作為ruby指令碼的參數

#!/usr/bin/env ruby# Encoding: utf8filename = ARGV[0]if File.exist?(filename)  file = File.open(filename)  file.each_line do |line|    print line  end  file.closeelse  puts "error:file not exist"end




本文出自 “專註Linux 營運” 部落格,轉載請與作者聯絡!

ruby逐行遍曆檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.