CLI Usage.md.txt 405 B

123456789101112131415161718192021222324
  1. # XDice Command-Line
  2. Run `python roll.py [options] <expr>`
  3. Usage:
  4. roll [options] <expr>
  5. Options:
  6. -s Numeric score only
  7. -h --help Displays help message
  8. --version Displays current xdice version
  9. ### Examples
  10. * Basic use
  11. `python roll 1d6+1`
  12. `>> 2 ([1]+1)`
  13. * Numeric score only
  14. `python roll -s 1d6+1`
  15. `>> 2`