Hi folks
I recently joined th community fcall on the discord server of the Growin Community. There we had a Linux session in which we learn't quite some handy tricks with the Linux.
If you do not own a linux machine do not worry. You can use
1 Killer koda
Just choose the ubuntu from here
2 copy.sh
Alright you are all set to get your hands on the terminal.
3,2, 1 Go π«π
LINUX Tricks
-
To execute a previous command:
-
historyβ prints the history of commands. -
!<cmd_no>β executes a command from history based on its number.
-
-
To copy and paste lines in
vim:-
Esc + 10yyβ copies 10 lines. - Paste with
pto insert after the cursor.
-
-
To perform a reverse search:
-
Ctrl+Rβ reverse search through the command history.
-
-
To count lines in a file:
-
wc -l aks.txtβ counts and lists the number of lines.
-
-
Yanking (copying) in
vim:-
yyβ yanks (copies) the current line. -
Esc + 5yyβ yanks (copies) 5 lines. - Paste with
pafter yanking.
-
-
Navigating in
vim:-
Esc + :1β jumps to line 1. -
:set nuβ enables line numbers. -
Esc + Shift+Gβ moves to the end of the document.
-
-
Deleting in
vim:-
Esc + dGβ deletes everything from the current line to the end of the document. -
Esc + uβ undoes the last change.
-
-
Finding unique adjacent lines in a file:
-
uniq -cβ looks for unique adjacent lines.
-
-
Sorting, unique filtering, and counting occurrences:
-
cat aks.txt | sort | uniq -cβ lists all unique lines inaks.txtwith their counts after sorting.
-
That's it you got a lot from this article do like it and share any comments
you want to. DO not shy away.
See you next time
Top comments (0)