我是linux的初学者,但是我已经设法做了我自己的shell。是时候在里面添加管道了。(这就是作业所说的)。有人能给我解释一下如何做到这一点吗?我知道在理论上,它应该是这样工作的。
unsigned char* child_results; //buffer to save results from child processes
for (int i = 0; i < 2; i++) {
pid = fork();
if (pid == 0) {
//if it's the first process to launch, close the
我有一个由整数、后跟"|“和一些二进制数据组成的字符串。
举例说明。
321654|<some binary data here>
如何以尽可能低的资源使用率获取字符串前面的数字?
我拿到了符号的索引,
string s = "321654654|llasdkjjkwerklsdmv"
int d = s.IndexOf("|");
string n = s.Substring(d + 1).Trim();//did try other trim but unsuccessful
下一步要做什么?尝试复制到,但复制到只支持char[]。