mirror of
https://github.com/mfontanini/presenterm.git
synced 2025-05-05 15:32:58 +00:00
8 lines
120 B
Bash
8 lines
120 B
Bash
#!/usr/bin/env bash
|
|
|
|
tempdir=$(mktemp -d)
|
|
cd "$tempdir"
|
|
cp "$1" script.kts
|
|
kotlinc -script script.kts
|
|
rm -rf "$tempdir"
|