嗨,我想用crystal语言逐行读取文件,但我不知道该怎么做。
我阅读了水晶文档,但找不到答案。
这是我的代码:
system("ls /etc/NetworkManager/system-connections/ > Fox.txt")
file = File.read("Fox.txt")
system("sudo cat /etc/NetworkManager/system-connections/'#{file}' >> Fox_done.txt")
要逐行读取文件,可以使用file#each_line:
File.each_line("/path/to/input.txt") do |line|
puts line
end
如果文件很小,并且您想加载内存中的所有行,您也可以使用file#read_lines:
File.read_lines("/path/to/input.txt") # returns a Array(String)