mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
c37a51c2ed
This addresses #135.
19 lines
240 B
Bash
Executable File
19 lines
240 B
Bash
Executable File
#!/bin/bash
|
|
|
|
out=./builtin_modules.go
|
|
|
|
{
|
|
echo "package eval"
|
|
echo "var builtinModules = map[string]string{"
|
|
|
|
for f in *.elv; do
|
|
echo -n "\"${f%.elv}\": \`"
|
|
cat $f | sed 's/`/``/g'
|
|
echo '`,'
|
|
done
|
|
|
|
echo "}"
|
|
} > $out
|
|
|
|
gofmt -w $out
|