欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python打开文件逐行读取文件命令并执行

程序员文章站 2022-05-10 12:24:13
...
python代码:

Java代码

import os

file = open("cc.txt")

for line in file:

os.system(line)




ruby代码:

Java代码

file = File.open("ttt.txt")

file.each_line do |line|

%x(scp #{line.chomp} #{line.replace("/","")})

end