An open API service indexing awesome lists of open source software.

https://github.com/uetchy/pause

Pause linux pipes for certain amount of time before continuing.
https://github.com/uetchy/pause

Last synced: 4 months ago
JSON representation

Pause linux pipes for certain amount of time before continuing.

Awesome Lists containing this project

README

          

# pause

[![asciicast](https://asciinema.org/a/JhN3EzSuEMEAwtkB0KPJZi0w8.svg)](https://asciinema.org/a/JhN3EzSuEMEAwtkB0KPJZi0w8)

## Install

```
cargo install pause
```

## Usage

```
function get-repository() {
hub api search/repositories?q=$1 | jq -r '.items[0].html_url' | pause | xargs ghq get
}
```