Pytop/src/Pytop_exec_bin.cpp

11 lines
157 B
C++

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/Pytop/");
system("python3 .");
return 0;
}