From 90acdb588a05036a1a36389e32403e7e2d6c2953 Mon Sep 17 00:00:00 2001 From: Hannes <127860003+Han2-Ro@users.noreply.github.com> Date: Sat, 12 Jul 2025 12:58:13 +0200 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 180a7d6..85b6383 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,14 @@ Minishell is a very simple, custom-built shell inspired by bash. This project fo ### Features: - Custom command prompt. -- Execution of commands via absolute, relative paths, or $PATH environment variable. +- Execution of commands via absolute, relative paths, or `$PATH` environment variable. - Built-in commands: echo, cd, pwd, export, unset, env, exit. - Quoting with ' and " (single and double quotes). -- Redirections (<, >, >>). -- Piping (|). -- Environment variable expansion ($VARIABLE). -- Exit status variable ($?). -- Signal handling (Ctrl-C, Ctrl-D, Ctrl-\). +- Redirections (`<`, `>`, `>>`). +- Piping (`|`). +- Environment variable expansion (`$VARIABLE`). +- Exit status variable (`$?`). +- Signal handling (`Ctrl-C`, `Ctrl-D`, `Ctrl-\`). - Command history navigation using arrow keys (via termcap). ## Team