c++/bash-offline/program.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun Jun 11 01:25:56 2017 +0200 (2017-06-11)
changeset 48 254d5d1bc659
permissions -rw-r--r--
lpt-signal-generator: magická konstanta
     1 #include <stdlib.h>
     2 #include <iostream>
     3 
     4 int main() {
     5     using namespace std;
     6     cout << "\033[22;31m" << "Vítejte v offline shellu" << "\033[0m" << endl;
     7     system("/bin/bash");
     8     cout << "\033[22;31m" << "Končím offline shell" << "\033[0m" << endl;
     9 }
    10