Files
privacy.sexy/src/application/Context/State/Code/Generation/Languages/ShellBuilder.ts
2021-02-21 12:34:33 +01:00

16 lines
413 B
TypeScript

import { CodeBuilder } from '@/application/Context/State/Code/Generation/CodeBuilder';
export class ShellBuilder extends CodeBuilder {
protected getCommentDelimiter(): string {
return '#';
}
protected writeStandardOut(text: string): string {
return `echo '${escapeForEcho(text)}'`;
}
}
function escapeForEcho(text: string) {
return text
.replace(/'/g, '\'\\\'\'');
}