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.
Beginners Guide for Export Command in Linux
https://linuxtldr.com/export-command/
https://linuxtldr.com/export-command/
Linux TLDR
Beginners Guide for Export Command in Linux
The export command is used to create environment variables or update variable values in the current shell session by newly forked child processes without starting a new shell session.
How to Use Here Document (HereDoc) in Linux Shell Script
https://linuxtldr.com/heredoc/
https://linuxtldr.com/heredoc/
Linux TLDR
How to Use Here Document (HereDoc) in Linux Shell Script
In Bash and also for other implementations of the shell, like zsh and fish, you can use the HereDoc to redirect a multi-line or block of lines from the script as an input to interactive commands.
Beginners Guide for Read Command in Linux
https://linuxtldr.com/read-command/
https://linuxtldr.com/read-command/
Linux TLDR
Beginners Guide for Read Command in Linux
The read command is a built-in Linux utility that allows shell script writers to take single line input from the keyboard or from the file descriptor and store it in a variable.
Listing All the Available Shells in Your Linux System
https://linuxtldr.com/listing-available-shells-in-linux/
https://linuxtldr.com/listing-available-shells-in-linux/
Linux TLDR
Listing All the Available Shells in Your Linux System
In this article, you will learn different ways to list all the available shells in your Linux system, including shells associated with specific users, your own default login shell, and many more.
How to Find the Most Used Commands in Your Linux System
https://linuxtldr.com/finding-the-most-used-commands-in-linux/
https://linuxtldr.com/finding-the-most-used-commands-in-linux/
Linux TLDR
How to Find the Most Used Commands in Your Linux System
In this article, you will learn how to list the most and least executed commands in your Linux system to find your favorite tool.
Display and Filter History Records Based on Date and Time in Linux
https://linuxtldr.com/display-and-filter-history-records-based-on-date-and-time/
https://linuxtldr.com/display-and-filter-history-records-based-on-date-and-time/
Linux TLDR
Display and Filter History Records Based on Date and Time in Linux
In this article, you will learn how to add date and time to the history record and how to list previously executed commands based on their date and time in Linux.