| 447 | leave any process hanging around) */ |
| 448 | |
| 449 | int |
| 450 | dosh(void) |
| 451 | { |
| 452 | #ifdef SYSCF |
| 453 | if (!sysopt.shellers || !sysopt.shellers[0] |
| 454 | || !check_user_string(sysopt.shellers)) { |
| 455 | /* FIXME: should no longer assume a particular command keystroke */ |
| 456 | Norep("Unavailable command '!'."); |
| 457 | return 0; |
| 458 | } |
| 459 | #endif |
| 460 | return vms_doshell("", TRUE); /* call for interactive child process */ |
| 461 | } |
| 462 | |
| 463 | /* vms_doshell -- called by dosh() and readmail() |
| 464 | * |
no test coverage detected