@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
9 lines • 326 B
TypeScript
/**
*
* takes a command and removes the first keep lines from the output
*
* @param cmd the command, its stdout is then limited
* @param removeFirstN how many lines to remove at the start of the command
* @returns
*/
export declare const removeFirstLinesFromCommandOutput: (cmd: string, removeFirstN: number) => string;