Posted inUncategorized
golang ile exe çalıştırma ve parametre gönderme
Ben aşağıdaki örnekde not defterini çağırdım ve file.txt isimli dosya oluşturmasını istedim. package mainimport ( "bufio" "fmt" "os/exec")func main() { calc := exec.Command("notepad", "/a file.txt ") …