From b96ef8bf0f493cbdd9fdf34a19460d37b79fb1b8 Mon Sep 17 00:00:00 2001 From: Vinay Mayavanshi <75678393+VinayMayavanshi13@users.noreply.github.com> Date: Tue, 16 Aug 2022 22:06:50 +0530 Subject: [PATCH] updated day15.md Added shortcut key for clearing terminal screen. It's pretty cumbersome to write " clear" command everytime whereas you can do the same by simply using Ctrl + L. --- Days/day15.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Days/day15.md b/Days/day15.md index a10653d..4a55293 100644 --- a/Days/day15.md +++ b/Days/day15.md @@ -37,6 +37,8 @@ For one off jobs like installing applications or services, you might need that ` I find myself using `clear` all the time, the `clear` command does exactly what it says it is going to clear the screen of all previous commands, putting your prompt to the top and giving you a nice clean workspace. Windows I think is `cls` in the .mdprompt. + Note : Instead of writing `clear` everytime,you can use a simple key combination for it which is Ctrl + L. + ![](Images/Day15_Linux6.png) Let's now look at some commands where we can actually create things within our system and then visualise them in our terminal, first of all, we have `mkdir` which will allow us to create a folder in our system. With the following command, we can create a folder in our home directory called Day15 `mkdir Day15`