A POSIX compliant shell
Find a file
2026-01-10 19:16:36 +01:00
src fix(parser): functions body placebo so code compiles 2026-01-10 19:16:36 +01:00
tests feat: README, gitgnore and basic project structure 2026-01-06 17:53:41 +01:00
.clang-format feat: README, gitgnore and basic project structure 2026-01-06 17:53:41 +01:00
.gitignore feat: README, gitgnore and basic project structure 2026-01-06 17:53:41 +01:00
configure.ac fix(configure.ac): commented Makefiles for testing 2026-01-09 14:34:22 +01:00
Makefile.am feat(autotools): basic usage 2026-01-07 17:38:54 +01:00
README.md feat(autotools): explainations in README 2026-01-09 14:27:27 +01:00

42sh - A POSIX shell with a bad name

42sh is a shcool project aiming to implement a POSIX compliant shell in C.

Getting started

TODO

Build

run this command: autoreconf --force --verbose --install

Test

run this command: ./configure CFLAGS='-std=c99 -Werror -Wall -Wextra -Wvla' then: make

asan

run this command: ./configure CFLAGS='-std=c99 -Werror -Wall -Wextra -Wvla -g -fsanitize=address' then: make check

Authors

  • Matteo Flebus
  • Jean Hérail
  • William Valenduc
  • Guillem George

Project status

WIP

TODO

Autotools

implement functions in all .c files to see if everything compiles.