输入banner图图片脚本导航/分类

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

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