Implement the change directory (cd) builtin
authorLukas Jiriste <ljiriste@student.42prague.com>
Fri, 2 Aug 2024 16:43:10 +0000 (18:43 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Fri, 2 Aug 2024 16:43:10 +0000 (18:43 +0200)
commit804b8c1e57d4073c5e06a32116a170f3ebdfbdb6
tree7602b75e426ac834f539b3354163bbfa4e305cd5
parentc011af17d417a5fb3d47fad648f9c2879c9bf388
Implement the change directory (cd) builtin

It supports the $PWD variable and ~/nothign for home dir.
Makefile
inc/execution.h [new file with mode: 0644]
inc/minishell.h
src/builtins/cd.c [new file with mode: 0644]
src/execution.c
src/vars.c