(command, content)
| 21 | } |
| 22 | |
| 23 | function writeCommandContent(command, content) { |
| 24 | const commandMdPath = getCommandPath(command); |
| 25 | writeFileSync(commandMdPath, content, 'utf8'); |
| 26 | } |
| 27 | |
| 28 | function shell(content) { |
| 29 | const start = '```sh'; |
no test coverage detected