Files
SolarFM/src/versions/solarfm-0.0.1/SolarFM_exec_bin.cpp

11 lines
160 B
C++
Raw Normal View History

2021-10-10 01:45:55 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/");
system("python solarfm.zip");
2021-10-10 01:45:55 -05:00
return 0;
}