Start shell
This commit is contained in:
parent
472e3d2707
commit
46d495e610
1 changed files with 28 additions and 0 deletions
28
ccc.c
28
ccc.c
|
@ -68,6 +68,7 @@ void goto_dir(void);
|
||||||
void create_dir(void);
|
void create_dir(void);
|
||||||
void create_file(void);
|
void create_file(void);
|
||||||
void delete_files(void);
|
void delete_files(void);
|
||||||
|
void start_shell(void);
|
||||||
void wpprintw(const char *fmt, ...);
|
void wpprintw(const char *fmt, ...);
|
||||||
void move_cursor(int row, int col);
|
void move_cursor(int row, int col);
|
||||||
int read_key(void);
|
int read_key(void);
|
||||||
|
@ -372,6 +373,7 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '!':
|
case '!':
|
||||||
|
start_shell();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* mark one file */
|
/* mark one file */
|
||||||
|
@ -1217,6 +1219,32 @@ void delete_files(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void start_shell(void)
|
||||||
|
{
|
||||||
|
bprintf("\033[2J\033[?25h");
|
||||||
|
move_cursor(1, 1);
|
||||||
|
char shell[PATH_MAX];
|
||||||
|
strcpy(shell, getenv("SHELL"));
|
||||||
|
if (strlen(shell) == 0) {
|
||||||
|
strcpy(shell, "sh");
|
||||||
|
} else {
|
||||||
|
pid_t pid = fork();
|
||||||
|
if (pid == 0) {
|
||||||
|
/* Child process */
|
||||||
|
execlp(shell, shell, NULL);
|
||||||
|
_exit(1); /* Exit if exec fails */
|
||||||
|
} else if (pid > 0) {
|
||||||
|
/* Parent process */
|
||||||
|
waitpid(pid, NULL, 0);
|
||||||
|
list_files();
|
||||||
|
bprintf("\033[?25l");
|
||||||
|
} else {
|
||||||
|
/* Fork failed */
|
||||||
|
wpprintw("fork failed: %s", strerror(errno));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Print line to the panel
|
* Print line to the panel
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue