Skip to content

Latest commit

 

History

History
61 lines (32 loc) · 1.8 KB

README.md

File metadata and controls

61 lines (32 loc) · 1.8 KB

image

goKiller App

Introduction

The goKiller app is a simple command-line utility written in Go that allows you to list running processes and optionally terminate them by name. It provides an easy-to-use interface for viewing and managing processes with a focus on RAM (memory) usage.

Features

  • List Processes: View a list of all running processes along with their names, Process IDs (PIDs), and RAM usage in megabytes (MB).

  • Kill a Process: Terminate a running process by entering its name.

  • Kill a Process by PID: Terminate a running process by entering its PID.

  • Search for a Process: Search for a process by entering its name.

  • Exit the App: Quit the goKiller App.

image

Installation and Usage

Before you can use the goKiller App, make sure you have Go installed on your system. You can download and install Go from the official website: https://golang.org/dl/

Once Go is installed, follow these steps to run the app:

  1. Open a terminal or command prompt.

  2. Clone the GitHub repository containing the app's source code:

    git clone https://github.com/mehmetaltugakgul/goKiller
    
  3. Navigate to the directory containing the app's source code:

    cd goKiller
  4. Build the app:

    go build
  5. Run the app:

    ./goKiller

    Note: If you are using Windows, you can run the app by double-clicking the goKiller.exe file in the directory containing the app's source code.

image