当前位置:Gxlcms > Python > python打开文件逐行读取文件命令并执行

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

时间:2021-07-01 10:21:17 帮助过:171人阅读

import os    
file = open("cc.txt")   
for line in file:  
  os.system(line)


file = File.open("ttt.txt")   
   file.each_line do |line|  
     %x(scp #{line.chomp} #{line.replace("/","")})  
   end

人气教程排行