Writing Single-line, Inline, and Multi-line Comments in Linux Shell Script
https://linuxtldr.com/comments-shell-script/
https://linuxtldr.com/comments-shell-script/
Linux TLDR
Writing Single-line, Inline, and Multi-line Comments in Linux Shell Script
Like other programming languages, bash provides you with the option to ignore a single line, inline, or a block of lines from execution.
What is Shell? | CLI vs GUI | Shell Scripting Explained
https://linuxtldr.com/shell/
https://linuxtldr.com/shell/
Linux TLDR
What is Shell? | CLI vs GUI | Shell Scripting Explained
The shell is nothing more than a program that carries the user typed commands or instructions from the terminal to the kernel.
Purpose of utmp, wtmp, and btmp files in Linux (with an Example)
https://linuxtldr.com/linux-utmp-wtmp-btmp-files/
https://linuxtldr.com/linux-utmp-wtmp-btmp-files/
Linux TLDR
Purpose of utmp, wtmp, and btmp files in Linux (with an Example)
In this article, you will learn what utmp, wtmp, and btmp log files are, their purpose, and how to read them using the built-in command tool in Linux.
Difference between "dir" and "ls" Commands (with an Example)
https://linuxtldr.com/ls-vs-dir-command/
https://linuxtldr.com/ls-vs-dir-command/
Linux TLDR
Difference between "dir" and "ls" Commands (with an Example)
In the Linux world, two common commands, “ls” and “dir“, replicate each other so well that most Linux users think one of them is an alias or symbolic link to the other.
How to Install Geany IDE on Linux (with Dark Theme)
https://linuxtldr.com/installing-geany-text-editor/
https://linuxtldr.com/installing-geany-text-editor/
Linux TLDR
How to Install Geany IDE on Linux (with Dark Theme)
Discover the lightweight yet powerful open-source Geany text editor alternative to Notepad++ on Linux with an installation guide and a few tips and tricks.
How to Display the List of All Users in Linux (Ultimate Guide)
https://linuxtldr.com/listing-users-in-linux/
https://linuxtldr.com/listing-users-in-linux/
Linux TLDR
How to Display the List of All Users in Linux (Ultimate Guide)
It is important for a Linux administrator to find out all the users in their current system so that they can adjust the rules and privileges for each one.
Understanding Stdin, Stdout, and Stderr Streams in Linux
https://linuxtldr.com/understanding-streams-in-linux/
https://linuxtldr.com/understanding-streams-in-linux/
Linux TLDR
Understanding Stdin, Stdout, and Stderr Streams in Linux
In Linux, stdin, stdout, and stderr streams are already part of your Linux system and attached to your terminal device to inspect the data.
Beginners Guide for Echo Command in Linux
https://linuxtldr.com/echo-command/
https://linuxtldr.com/echo-command/
Linux TLDR
Beginners Guide for Echo Command in Linux
The echo command takes the text or file as an argument and prints the output on the screen. It is mostly used in shell scripts to instruct the user or give any piece of information.
Beginners Guide for Which Command in Linux
https://linuxtldr.com/which-command/
https://linuxtldr.com/which-command/
Linux TLDR
Beginners Guide for Which Command in Linux
The which command locates the executable command or file location in the user’s environmental path. It will give you the complete path an executable command or file is pointing towards in your file system.
35+ Advance Examples of the Find Command in Linux
https://linuxtldr.com/find-command/
https://linuxtldr.com/find-command/
Linux TLDR
35+ Advance Examples of the Find Command in Linux
The find command is an advanced tool for searching files or directories rigorously in your file system, taking a little longer time than its alternative tools like the locate command.
How to Set and List Environment Variables in Linux
https://linuxtldr.com/environment-variables/
https://linuxtldr.com/environment-variables/
Linux TLDR
How to Set and List Environment Variables in Linux
The environment variables are a set of key-value pairs that define the current environment and can affect the behavior of the ongoing programs that are executed in the environment.
How to Add a Directory to the $PATH Variable in Linux
https://linuxtldr.com/adding-a-directory-to-the-path-variable-in-linux/
https://linuxtldr.com/adding-a-directory-to-the-path-variable-in-linux/
Linux TLDR
How to Add a Directory to the $PATH Variable in Linux
To avoid jumping into the directory to execute your local program or script, you can add their paths to the $PATH variable to access them from anywhere.
How to Count String Occurrences in a Text File
https://linuxtldr.com/counting-string-occurrences-in-a-text-file/
https://linuxtldr.com/counting-string-occurrences-in-a-text-file/
Linux TLDR
How to Count String Occurrences in a Text File
In this article, you will learn to count the number of string occurrences in a text file using the grep, wc, and tr commands, including the VIM text editor.