Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weisjohn/randal
Randal picks the order for the game
https://github.com/weisjohn/randal
Last synced: about 2 months ago
JSON representation
Randal picks the order for the game
- Host: GitHub
- URL: https://github.com/weisjohn/randal
- Owner: weisjohn
- Created: 2013-02-05T02:16:34.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2021-03-19T12:38:39.000Z (almost 4 years ago)
- Last Synced: 2024-11-15T17:08:00.461Z (about 2 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
randal
======Randal picks the order for the game.
```bash
$ npm install -g randal
$ randal joe john jim
jim joe john
```He also accepts redirection:
```bash
$ randal <(echo "jim joe james john")
john jim james joe
```and
```bash
$ echo "john paul george ringo" | randal
paul george john ringo
```Also accepts a limit for the number of entries wanted for output:
```bash
$ randal -l 2 "jim joe james"
jim james
```