nissy-fmc

A Rubik's cube FMC assistant
git clone https://git.tronto.net/nissy-fmc
Download | Log | Files | Refs | README | LICENSE

commit 936794a863822878caa29bd7847cd5248796932f
parent 07288010d8d98eeb04e531ca9be8a1d3cf68e0a0
Author: Sebastiano Tronto <sebastiano.tronto@gmail.com>
Date:   Tue, 14 Dec 2021 16:23:19 +0100

Better output in batch mode

Diffstat:
Mnissy | 0
Msrc/shell.c | 19++++++++++++++-----
2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/nissy b/nissy Binary files differ. diff --git a/src/shell.c b/src/shell.c @@ -55,7 +55,7 @@ exec_args(int c, char **v) } void -launch(bool prompt) +launch(bool batchmode) { int i, shell_argc; char line[MAXLINELEN], **shell_argv; @@ -64,18 +64,27 @@ launch(bool prompt) for (i = 0; i < MAXNTOKENS; i++) shell_argv[i] = malloc((MAXTOKENLEN+1) * sizeof(char)); - if (prompt) { + if (!batchmode) { fprintf(stderr, "Welcome to Nissy "VERSION".\n" "Type \"commands\" for a list of commands.\n"); } while (true) { - if (prompt) { + if (!batchmode) { fprintf(stdout, "nissy-# "); } + if (fgets(line, MAXLINELEN, stdin) == NULL) break; + + if (batchmode) { + printf(">>>\n" + ">>> Executing command: %s" + ">>>\n", line); + } + shell_argc = parseline(line, shell_argv); + if (shell_argc > 0) exec_args(shell_argc, shell_argv); } @@ -90,12 +99,12 @@ main(int argc, char *argv[]) { if (argc > 1) { if (!strcmp(argv[1], "-b")) { - launch(false); + launch(true); } else { exec_args(argc-1, &argv[1]); } } else { - launch(true); + launch(false); } return 0;