go-sleep/README.md

56 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2021-12-15 12:00:46 +00:00
<!--
SPDX-FileCopyrightText: 2021 Eric Neidhardt
SPDX-License-Identifier: CC-BY-4.0
-->
2020-08-10 18:59:53 +00:00
<!-- markdownlint-disable MD041-->
[![Go Report Card](https://goreportcard.com/badge/github.com/EricNeid/go-sleep?style=flat-square)](https://goreportcard.com/report/github.com/EricNeid/go-sleep)
![Go](https://github.com/EricNeid/go-sleep/workflows/Go/badge.svg)
[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](http://godoc.org/github.com/EricNeid/go-sleep)
[![Release](https://img.shields.io/github/release/EricNeid/go-sleep.svg?style=flat-square)](https://github.com/EricNeid/go-sleep/releases/latest)
2020-06-16 14:42:36 +00:00
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/EricNeid/go-sleep)
2020-01-20 17:45:19 +00:00
# About
Just sleep for windows.
2021-12-15 12:07:23 +00:00
## Quickstart
2020-01-20 17:45:19 +00:00
Make sure that docker is installed and checkout the project.
```bash
2021-12-15 12:07:23 +00:00
make all
```
## Installation
Simply grep the latest available binary from the release page and put it somewhere in your path.
If go is installed and $GOPATH/bin is in your path, you can download and install the tool directly
by using go install.
Download tool:
```bash
go install github.com/EricNeid/go-sleep/cmd/sleep@v0.2.0
2020-01-20 17:45:19 +00:00
```
## Usage
Download tool.
```bash
2020-04-04 19:46:06 +00:00
go get github.com/EricNeid/go-sleep/cmd/sleep
2020-03-26 07:44:19 +00:00
go install github.com/EricNeid/go-sleep/cmd/sleep
2020-01-20 17:45:19 +00:00
```
Make sure that $GOPATH/bin is in your path.
```bash
sleep 4
```
## Question or comments
Please feel free to open a new issue:
<https://github.com/EricNeid/go-sleep/issues>