(args)
| 13 | description: "Search query", |
| 14 | }), |
| 15 | async handler(args) { |
| 16 | await bootstrap(process.cwd(), async () => { |
| 17 | const results = await File.search({ query: args.query }) |
| 18 | process.stdout.write(results.join(EOL) + EOL) |
| 19 | }) |
| 20 | }, |
| 21 | }) |
| 22 | |
| 23 | const FileReadCommand = cmd({ |