Skip to content

Provides Golang wih an easy to use and cross-platform method of killing processes based on their process name, similar to how Unix's pkill command works.

Notifications You must be signed in to change notification settings

Programmerino/pkill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

pkill for Golang!

Extremely simple, but cross-platform function to kill a process by it's process name

import "github.com/SkyrisBactera/pkill"
// Kills chrome
output, err := pkill.Pkill("chrome")
if err != nil {
    fmt.Println(err)
}
fmt.Println(output)

About

Provides Golang wih an easy to use and cross-platform method of killing processes based on their process name, similar to how Unix's pkill command works.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages