6 lines
108 B
Bash
Executable file
6 lines
108 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ARGS=$(deno --help | grep --only-matching -- '--unstable-[a-z\-]*' | xargs)
|
|
|
|
deno repl -A $ARGS
|
|
|