Skip to content
Snippets Groups Projects
Commit 628d0f00 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

cleanup
parent dcab669f
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ class GmshInteractiveClient{
}
void read(char *prompt)
{
// preload a few commands in the history:
// pre-load a few commands in the history:
add_history("lc = 1.;");
add_history("Point(1) = {0,0,0,lc};");
add_history("Point(2) = {5,0,0,lc};");
......@@ -32,22 +32,22 @@ class GmshInteractiveClient{
add_history("argh");
while (1) {
// read input char until CR, LF, EOF, ^D
// read input char until CR, LF, EOF or ^D
char *ptr = readline(prompt);
// exit interactive if EOF or ^D
if(!ptr) break;
// if there is something in the line
// if the command line is not empty
if(strlen(ptr)){
// add the command in the stack
add_history(ptr);
if(!strcmp(ptr,"q") || !strcmp(ptr, "quit")){
// exit interactive if q, quit, exit
if(!strcmp(ptr, "q") || !strcmp(ptr, "quit")){
// exit interactive if q or quit
free(ptr);
break;
}
else if(!strcmp(ptr, "dir") || !strcmp(ptr, "ls")){
else if(ptr[0] == '!'){
// direct system calls
system("ls -al");
system(&ptr[1]);
}
else if(!strcmp(ptr, "argh")){
// test speed of string sending with a 1Mb view
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment