(cmd: string[], opts: RunOptions = {})
| 171 | } |
| 172 | |
| 173 | export async function lines(cmd: string[], opts: RunOptions = {}): Promise<string[]> { |
| 174 | return (await text(cmd, opts)).text.split(/\r?\n/).filter(Boolean) |
| 175 | } |
| 176 | |
| 177 | export * as Process from "./process" |