From 98c05947daac1bdefa23fa22e91316d307183f80 Mon Sep 17 00:00:00 2001 From: Laith Abu-Nawwas <36891818+lanawwas@users.noreply.github.com> Date: Wed, 30 Aug 2023 09:46:10 +0200 Subject: [PATCH] Update Bash.md --- Bash.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Bash.md b/Bash.md index 074ee38..1b46f26 100644 --- a/Bash.md +++ b/Bash.md @@ -18,7 +18,7 @@ mc [Reference](https://linuxtect.com/how-to-select-all-in-vim-vi/) -#Then gg command is to move the cursor to the start of the file +### Then gg command is to move the cursor to the start of the file ``` gg @@ -26,24 +26,24 @@ gg ``` -#The yy command is used to yank or copy the current line, but providing the line count can select and copy the number of lines specified +### The yy command is used to yank or copy the current line, but providing the line count can select and copy the number of lines specified ``` yy ``` - #Select and Delete All Lines + ### Select and Delete All Lines ``` :%d ``` - #Select and Copy All Lines + ### Select and Copy All Lines ``` :%y ``` -#Go to the end of the file, use capital G +### Go to the end of the file, use capital G ``` G ```