diff --git a/images/man_help.png b/images/man_help.png new file mode 100644 index 0000000000000000000000000000000000000000..5b2ea842cf7fa4ca47a40a8e1885175bb2049a9e Binary files /dev/null and b/images/man_help.png differ diff --git a/images/man_make.png b/images/man_make.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e56338a3b810eea6686a4024f994d903afd4a7 Binary files /dev/null and b/images/man_make.png differ diff --git a/index.html b/index.html index eacfbd4b7ca34a6c5043d86e7b0bcf364711d23e..9c3f9c9e966b6c8e0de10c25df3827d1b2e585d8 100644 --- a/index.html +++ b/index.html @@ -33,6 +33,7 @@ But for those who are overwhelmed, we will try to disect some of the content ## What are those files? For most base projects of HTMAA, you are provided with a set of different files: + * `file.png` are typically images for tracing (trace) or cutting (outline) * `file.c` is a C file that contains a C program, which runs on a micro-controller * `file.make` (or anything ending in `.make`, so here typically `file.c.make` too) is to use the program `make` to call commands that allow you to do things @@ -46,6 +47,19 @@ On Mac / Linux, you can access the manual of a specific command typically by typ man fancycommand ``` +For example, we want to learn about `make`, so let's do that: +```bash +man make +``` + +That should give you an interactive stream that you can go over (down/up arrows) and search through (`/` character, followed by search query). + + + +To exit that manual, just press `q` (quit). +To get some help and figure out how to use the manual functions, press `h` (help). + + ## What is [Make](https://www.gnu.org/software/make/manual/html_node/Introduction.html#Introduction)