From 6b87a319d9a95855457c0373c0cf8077dc660581 Mon Sep 17 00:00:00 2001 From: Weetile Date: Mon, 2 Oct 2023 20:46:57 +0100 Subject: [PATCH] fixed tick on gcc command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b93f060..170f3d3 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,6 @@ In CS2850: Operating Systems, you are instructed to use the following flags when To avoid having to type these out manually or copy-paste everytime, we can create an alias in our shell. For example we can define `rhulgcc` to include these flags automatically: ``` -alias rhulgcc='gcc -Wall -Werror -Wpedantic +alias rhulgcc='gcc -Wall -Werror -Wpedantic' ``` If you enter this command, `rhulgcc` will be aliased until the shell has terminated. To make these changes persistent, we can modify the `~/.bashrc` file (or `~/.zshrc`) if applicable by appending that alias command to the bottom. Remember to restart the shell for these changes to take effect.