Metadata-Version: 2.1
Name: tmux-xargs
Version: 0.0.7
Summary: targs: tmux + xargs
Home-page: https://github.com/ucchiee/targs
Download-URL: https://github.com/ucchiee/targs
Author: Yusuke Uchida
Author-email: fantomyuu0623@gmail.com
Maintainer: Yusuke Uchida
Maintainer-email: fantomyuu0623@gmail.com
License: MIT
Keywords: tmux xargs targs
Description-Content-Type: text/markdown
License-File: LICENSE

# targs
tmux + xargs = targs

## Install

```bash
pip install git+https://github.com/ucchiee/targs.git
# or
pip install tmux-xargs
```

## Usage

`targs` reads newline delimited strings from the standard input and executes utility with the strings as arguments.

e.g.:

```bash
$ cat ./etc/domains.txt
# google.com
# apple.com
# facebook.com
# amazon.com

$ tmux
$ cat ./etc/domains.txt | targs -I {} -- ping {}
```
