11 lines
304 B
TypeScript
11 lines
304 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 '${text}'`;
|
|
}
|
|
}
|