diff -r 000000000000 -r 1fec66105b8e c++/bash-offline/program.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/c++/bash-offline/program.cpp Fri Nov 18 21:41:23 2016 +0100 @@ -0,0 +1,10 @@ +#include +#include + +int main() { + using namespace std; + cout << "\033[22;31m" << "Vítejte v offline shellu" << "\033[0m" << endl; + system("/bin/bash"); + cout << "\033[22;31m" << "Končím offline shell" << "\033[0m" << endl; +} +