From cbbc3a75773749c5f4140423bca910607d5ed315 Mon Sep 17 00:00:00 2001 From: Zsombor Szabo-Antalovszky <zsombors@stud.ntnu.no> Date: Tue, 29 Apr 2025 12:54:23 +0200 Subject: [PATCH] updated readme file for snatch, and updated the help command in noshx.cpp to include the snatch command --- README.md | 4 +++- noshx.cpp | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd768f4..3fe6f2d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # NoƩmi Shell X (NoshX) - A Simple Custom Shell for UNIX-like systems -NoshX is a simple, customizable command-line shell designed for UNIX-like systems. Inspired by other UNIX-like shells, Nosh provides a variety of basic commands and functionalities, with a few fun additions. It is meant to emulate many of the standard shell operations, as well as offer a unique user experience. This project is open-source, and you are welcome to contribute.(Read about licensing below) +NoshX is a simple, customizable command-line shell designed for UNIX-like systems. Inspired by other UNIX-like shells, NoshX provides a variety of basic commands and functionalities, with a few fun additions. It is meant to emulate many of the standard shell operations, as well as offer a unique user experience. This project is open-source, and you are welcome to contribute.(Read about licensing below) ## Features (implemented): @@ -21,6 +21,8 @@ NoshX is a simple, customizable command-line shell designed for UNIX-like system `now`: Gets and prints out the current date and tame. +`snatch`: Install additional available commands for NoshX. + `store`: Save a string of maximum 100 characters during runtime. `store -g`: Show the string saved with `store`. diff --git a/noshx.cpp b/noshx.cpp index 900869c..7923498 100644 --- a/noshx.cpp +++ b/noshx.cpp @@ -210,6 +210,7 @@ void handle_help(const vector<string>& args){ << "noemi -l: Draw a heart shape made of # characters with more delay\n" << "now: Gets and prints out the curent date and time\n" //<< "rn: rename a file or a directory\n" + << "snatch: Install additional available commands for NoshX\n" << "store: Save a string of maximum 100 characters during runtime\n" << "store -g: Show the string saved with store\n\n"; } -- GitLab