New language: Sed

This commit is contained in:
Radon Rosborough 2020-07-19 10:44:14 -06:00
parent d58c9841a6
commit db40d25d0c
2 changed files with 11 additions and 0 deletions

View File

@ -1482,6 +1482,14 @@ binding_irb.run(IRB.conf)
template: `body:before {
content: "Hello, world!";
}
`,
},
sed: {
aliases: ["gsed"],
name: "Sed",
main: "main.sed",
run: "echo 'Reading from stdin...' >&2; sed -f main.sed",
template: `s/.*/Hello, world!/
`,
},
sh: {

View File

@ -12,6 +12,9 @@ scala
# Scheme
mit-scheme
# Sed
sed
# Sh
posh