Pytop/src/compileBin.sh

7 lines
86 B
Bash
Executable File

#!/bin/bash
function main() {
gcc -no-pie -s Pytop_exec_bin.cpp -o pytop
}
main;