初始化写一半了

This commit is contained in:
2025-11-21 14:27:36 +08:00
parent bd8b42adb1
commit 4fe804aaec
20 changed files with 12217 additions and 18 deletions

Binary file not shown.

View File

@@ -1,10 +0,0 @@
#include <iostream>
#include <thread>
using namespace std;
int main()
{
string cmd = "echo 'orangepi' | sudo -S create_ap wlan0 enP4p65s0 orangepi 12345678";
thread([cmd](){ system(cmd.c_str()); }).detach();
}