#include
#include
int main() {
std::string input;
while (true) {
std::cout > input;
if (input == "1") {
break;
}
std::cout
echo 5 > /proc/pid/fd/0
echo hello > /proc/pid/fd/0
echo "hey\n" > /proc/pid/fd/0
echo 'hi\xA0' > /proc/pid/fd/0
< /code>
Selbst wenn ich das Programmterminal als aktive Shell bringe, tut es nichts. In das Terminal selbst tippt?
Danke
Ich habe ein interaktives Programm, das bis zur Eingabe '1' ist.[code]#include #include
int main() { std::string input;
while (true) { std::cout > input;
if (input == "1") { break; }
std::cout echo 5 > /proc/pid/fd/0 echo hello > /proc/pid/fd/0 echo "hey\n" > /proc/pid/fd/0 echo 'hi\xA0' > /proc/pid/fd/0 < /code> Selbst wenn ich das Programmterminal als aktive Shell bringe, tut es nichts. In das Terminal selbst tippt? Danke
Ich schreibe eine Webanwendung unter Windows. Diese Anwendung besteht aus zwei oder mehr WARs.
Diese WARs erstellen temporäre Dateien bei der Verarbeitung.
Ich schreibe Python -Skript in Photogrammetry Application Metashape . Die App ist in C/C ++ geschrieben und ich möchte alle Konsolenausgaben unterdrücken und meine eigene Fortschrittsleiste...