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.
Beginners Guide for Whereis Command in Linux
https://linuxtldr.com/whereis-command/
https://linuxtldr.com/whereis-command/
Linux TLDR
Beginners Guide for Whereis Command in Linux
The whereis command is used to find the paths of binary, source, and manual files for a specified command, similarly to the find command but consuming less memory.
Beginners Guide for 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.
Different Ways to Search Files or Directories in Linux
https://linuxtldr.com/searching-files-or-directories-in-linux/
https://linuxtldr.com/searching-files-or-directories-in-linux/
Linux TLDR
Different Ways to Search Files or Directories on Linux
On Linux, you have multiple tools like which, whereis, locate, and find that can help you find the absolute path for files and directories in your system.
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.
Difference Between /etc/profile, ~/.bash_profile, ~/.profile, ~/.bashrc, etc
https://linuxtldr.com/difference-between-bash-profiles/
https://linuxtldr.com/difference-between-bash-profiles/
Linux TLDR
Difference Between /etc/profile, ~/.bash_profile, ~/.profile, ~/.bashrc, etc
The bash uses multiple profiles, also known as shell configuration files, to configure the user’s interactive login or non-login shell.
What is Interactive Login and Non-Login Shell
https://linuxtldr.com/interactive-login-and-non-login-shell/
https://linuxtldr.com/interactive-login-and-non-login-shell/
Linux TLDR
What is Interactive Login and Non-Login Shell
Whenever you operate a Linux system behind the scenes, you might be encountering the interactive login or non-login shell that you are not aware of.
Beginners Guide for Env Command in Linux
https://linuxtldr.com/env-command/
https://linuxtldr.com/env-command/
Linux TLDR
Beginners Guide for Env Command on Linux
The env command is an advanced version of printenv with a few more features to tweak your environment variables, like setting new environment variables, printing all environment variables, or executing a command in a modified environment.
How to Add a Directory to PATH 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 Shrink Long or Multiple Commands into Single Small Command
https://linuxtldr.com/shrinking-long-or-multiple-commands-into-a-single-short-command/
https://linuxtldr.com/shrinking-long-or-multiple-commands-into-a-single-short-command/
Linux TLDR
How to Shrink Long or Multiple Commands into a Single Short Command
In Linux, multiple long commands can be easily replaced with a single short command using the alias command.
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.