42sh 1.0.0
Create a shell in C
|
The file containing the backticks functions. More...
#include "../../include/myshell.h"
Functions | |
int | check_unmatched (mysh_t *mysh, char *line) |
Check if the backticks are matched. | |
char * | exec_command_in_backticks (mysh_t *mysh, char *line) |
Execute the command in backticks. | |
void | analyse_backticks (mysh_t *mysh, char *line) |
Analyse and execute backticks commands. | |
The file containing the backticks functions.
void analyse_backticks | ( | mysh_t * | mysh, |
char * | line ) |
Analyse and execute backticks commands.
mysh | The shell structure |
line | The command line |
int check_unmatched | ( | mysh_t * | mysh, |
char * | line ) |
Check if the backticks are matched.
mysh | The shell structure |
line | The command line |
char * exec_command_in_backticks | ( | mysh_t * | mysh, |
char * | line ) |
Execute the command in backticks.
mysh | The shell structure |
line | The command line to execute |