我正在运行一个简单的 CPP 程序来从控制台读取字符并以它们由点分隔的方式存储在文件中......
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
#include<fstream.h>
void main()
{
char content[2] = {'a','.'};
ofstream o("filename",ios::out|ios::app);
while(1)
{
if(content[0]=='q')
{
break;
}
content = getche();
out<<content;
}
out.close();
}
现在我希望这个程序只能在任务管理器中作为后台进程查看,而不是让用户看到(使用 cmd 运行)......
我使用最低优先级的start
命令。但是没有用。一些类似的问题对我没有用。因此,请提供一个 apt 命令,该程序将通过该命令作为后台进程运行。