|
C-Menu 0.2.9
A User Interface Toolkit
|
This module provides functions to execute external commands. More...
Functions | |
| int | full_screen_fork_exec (char **argv) |
| Execute a command in full screen mode. | |
| int | full_screen_shell (char *shellCmdPtr) |
| Execute a shell command in full screen mode. | |
| int | shell (char *shellCmdPtr) |
| Execute a shell command. | |
| int | fork_exec (char **argv) |
| Fork and exec a command. | |
This module provides functions to execute external commands.
| int fork_exec | ( | char ** | argv | ) |
Fork and exec a command.
| argv | - array of arguments for the command to execute |
Definition at line 128 of file exec.c.
References capture_curses_tioctl(), Perror(), restore_curses_tioctl(), restore_shell_tioctl(), restore_wins(), sig_dfl_mode(), sig_prog_mode(), and ssnprintf().
Referenced by full_screen_fork_exec(), and shell().
| int full_screen_fork_exec | ( | char ** | argv | ) |
Execute a command in full screen mode.
| argv | - array of arguments for the command to execute |
Definition at line 44 of file exec.c.
References fork_exec().
Referenced by menu_cmd_processor().
| int full_screen_shell | ( | char * | shellCmdPtr | ) |
Execute a shell command in full screen mode.
| shellCmdPtr | - pointer to the shell command string |
Definition at line 60 of file exec.c.
References restore_wins(), and shell().
Referenced by menu_cmd_processor(), and view_cmd_processor().
| int shell | ( | char * | shellCmdPtr | ) |
Execute a shell command.
| shellCmdPtr | - pointer to the shell command string |
Definition at line 80 of file exec.c.
References fork_exec().
Referenced by form_exec_cmd(), full_screen_shell(), lp(), and view_cmd_processor().