https://github.com/weisjohn/randal
Randal picks the order for the game
https://github.com/weisjohn/randal
Last synced: 6 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 (over 13 years ago)
- Default Branch: master
- Last Pushed: 2021-03-19T12:38:39.000Z (over 5 years ago)
- Last Synced: 2025-02-25T02:38:41.808Z (over 1 year 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
```