mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
10 lines
252 B
Bash
10 lines
252 B
Bash
#!/usr/bin/env bash
|
|
|
|
# curl racket 8.3 linux installation shell file
|
|
curl -L 'https://download.racket-lang.org/installers/8.3/racket-8.3-x86_64-linux-cs.sh' -o racket.sh
|
|
|
|
# provide settings "no" "4" and "<CR>" to racket.sh
|
|
echo "no
|
|
4
|
|
" | sh racket.sh
|
|
|