Initial commit...

This commit is contained in:
2021-10-10 01:45:55 -05:00
parent 589ef9e6a2
commit 6e2f571466
97 changed files with 9772 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/Pytop/");
system("python3 PyTop.py");
return 0;
}