c++/bash-offline/program.cpp
author František Kučera <franta-hg@frantovo.cz>
Tue, 06 Aug 2013 17:51:00 +0200
changeset 20 63b496ae04f9
parent 13 7453f9ec8b30
permissions -rw-r--r--
LangTable – viz https://www.abclinuxu.cz/clanky/ze-4-s-na-0-9-s-programovaci-jazyk-vala-v-praxi
     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