Pytop/src/Pytop_exec_bin.cpp

11 lines
157 B
C++
Raw Permalink Normal View History

2019-06-09 06:24:03 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/Pytop/");
system("python3 .");
2019-06-09 06:24:03 +00:00
return 0;
}