mirror of
https://github.com/mfontanini/presenterm.git
synced 2025-05-05 15:32:58 +00:00
6 lines
69 B
Bash
6 lines
69 B
Bash
#!/usr/bin/env bash
|
|
|
|
temp=$(mktemp)
|
|
gcc -x c "$1" -o "$temp"
|
|
"$temp"
|