説明なし

long_desc.js 949B

1234567891011121314151617181920
  1. #!/usr/bin/env node
  2. var cli = require('../');
  3. //You can (optionally) boost the width of output with:
  4. //cli.width = 120;
  5. //You can also adjust the width of the options/command definitions
  6. //cli.option_width = 25;
  7. var long_desc = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s '
  8. + 'standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make'
  9. + ' a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, '
  10. + 'remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing '
  11. + 'Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions'
  12. + ' of Lorem Ipsum.';
  13. cli.parse({
  14. foo: ['f', long_desc]
  15. });