1. 程式人生 > >ruby對檔案的寫入操作!

ruby對檔案的寫入操作!

Ruby編寫一個程式,從鍵盤輸入字串寫入指定檔案
========================================
方法1:
#!/usr/bin/env ruby -w

fh = File.open("test.txt", "w")
while (gets.chomp)
   break if ~/^quit/
   fh.puts $_
end
fh.close
方法2:
File.open("xxx.txt", 'w') do |f|             #Ctrl+C 結束執行
  while gets
    f.puts $_
  end
end