New language: Sed
This commit is contained in:
parent
d58c9841a6
commit
db40d25d0c
|
@ -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: {
|
||||
|
|
|
@ -12,6 +12,9 @@ scala
|
|||
# Scheme
|
||||
mit-scheme
|
||||
|
||||
# Sed
|
||||
sed
|
||||
|
||||
# Sh
|
||||
posh
|
||||
|
||||
|
|
Loading…
Reference in New Issue