diff options
Diffstat (limited to 'lash.c')
-rw-r--r-- | lash.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1434,12 +1434,12 @@ int shell_main(int argc_l, char **argv_l) | |||
1434 | * standard output is a terminal | 1434 | * standard output is a terminal |
1435 | * Refer to Posix.2, the description of the `sh' utility. */ | 1435 | * Refer to Posix.2, the description of the `sh' utility. */ |
1436 | if (interactive==TRUE || ( argv[optind]==NULL && input==stdin && isatty(fileno(stdin)) && isatty(fileno(stdout)))) { | 1436 | if (interactive==TRUE || ( argv[optind]==NULL && input==stdin && isatty(fileno(stdin)) && isatty(fileno(stdout)))) { |
1437 | fprintf(stdout, "optind=%d argv[optind]='%s'\n", optind, argv[optind]); | 1437 | //fprintf(stdout, "optind=%d argv[optind]='%s'\n", optind, argv[optind]); |
1438 | /* Looks like they want an interactive shell */ | 1438 | /* Looks like they want an interactive shell */ |
1439 | fprintf(stdout, "\n\nBusyBox v%s (%s) Built-in shell\n", BB_VER, BB_BT); | 1439 | fprintf(stdout, "\n\nBusyBox v%s (%s) Built-in shell\n", BB_VER, BB_BT); |
1440 | fprintf(stdout, "Enter 'help' for a list of built-in commands.\n\n"); | 1440 | fprintf(stdout, "Enter 'help' for a list of built-in commands.\n\n"); |
1441 | } else if (local_pending_command==NULL) { | 1441 | } else if (local_pending_command==NULL) { |
1442 | fprintf(stdout, "optind=%d argv[optind]='%s'\n", optind, argv[optind]); | 1442 | //fprintf(stdout, "optind=%d argv[optind]='%s'\n", optind, argv[optind]); |
1443 | input = fopen(argv[optind], "r"); | 1443 | input = fopen(argv[optind], "r"); |
1444 | if (!input) { | 1444 | if (!input) { |
1445 | fatalError("%s: %s\n", argv[optind], strerror(errno)); | 1445 | fatalError("%s: %s\n", argv[optind], strerror(errno)); |