#include "minishell.h" int main(int argc, char **argv, char **envp) { // init // find executable in PATH // user_loop // get user input // parse input // if error: // continue // interpret command // waiting for process to end // destroy return (0); }