12 lines
349 B
Bash
12 lines
349 B
Bash
#!/bin/sh
|
|
|
|
# installing deno without sudo (necessary for continuation)
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh
|
|
|
|
# adding deno to the environment
|
|
export DENO_INSTALL="~/.deno"
|
|
export PATH="$DENO_INSTALL/bin:$PATH"
|
|
|
|
# indications
|
|
echo "# run with :
|
|
deno run -A \"https://raw.githubusercontent.com/MajorBarnulf/mbztr/main/complete.ts\""
|