Last change
on this file was 11326, checked in by tbretz, 13 years ago |
Added .! command to be able to execute shell commands.
|
File size:
544 bytes
|
Line | |
---|
1 | #ifndef FACT_ReadlineColor
|
---|
2 | #define FACT_ReadlineColor
|
---|
3 |
|
---|
4 | #include <ostream>
|
---|
5 |
|
---|
6 | namespace ReadlineColor
|
---|
7 | {
|
---|
8 | bool ExecuteShellCommand(std::ostream &out, const std::string &cmd);
|
---|
9 |
|
---|
10 | bool PrintBootMsg(std::ostream &out, const std::string &name, bool interactive=true);
|
---|
11 | bool PrintAttributes(std::ostream &out);
|
---|
12 |
|
---|
13 | bool PrintGeneralHelp(std::ostream &out, const std::string &name);
|
---|
14 | bool PrintCommands(std::ostream &out);
|
---|
15 | bool PrintKeyBindings(std::ostream &out);
|
---|
16 |
|
---|
17 | bool Process(std::ostream &out, const std::string &str);
|
---|
18 | };
|
---|
19 |
|
---|
20 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.