如何与Mac上的终端通信以便我可以完成以下任务? 我想要求用户提供Raspberry Pi的IP或ID,然后利用输入连接到Raspberry Pi。 我已经尝试了下面的代码,但它不会起作用,并说#34;没有匹配函数调用系统"。
cout << "What is the Raspberry Pi's IP address or ID? ";
string raspiID;
cin >> raspiID;
cout << endl;
string command = "ssh pi@" + raspiID + "";
system(command);