mirror of
https://github.com/shelljs/shelljs.git
synced 2025-12-08 20:35:51 +00:00
16 lines
358 B
JavaScript
Executable File
16 lines
358 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
require('../global');
|
|
|
|
echo('Appending docs to README.md');
|
|
|
|
cd(__dirname + '/..');
|
|
|
|
// Extract docs from shell.js
|
|
var docs = grep('//@', 'shell.js');
|
|
// Remove '//@'
|
|
docs = docs.replace(/\/\/\@ ?/g, '');
|
|
// Append docs to README
|
|
sed('-i', /# Command reference(.|\n)*/, '# Command reference\n\n' + docs, 'README.md');
|
|
|
|
echo('All done.');
|