I wanted to make a program that opens and reads a text file. Then run or command in cmd
using what he had read in the text file something like this:
import os
nome = open ('nome.txt')
nome1 =nome.readline()
nome.close()
comando =os.system ('netsh wlan export profile name="AQUI FICA O VALOR DA VARIAVEL NOME1" folder="G:\WLess" key=clear'
)