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.
How to Run a (.sh) Shell Script in Linux [for Beginners]
https://linuxtldr.com/how-to-run-a-shell-script-in-linux/
https://linuxtldr.com/how-to-run-a-shell-script-in-linux/
Linux TLDR
How to Run (.sh) Shell Script in Linux [for Beginners]
Learn how to write and run a shell script using the bash or source command, or run it from the URL and execute it using its path.
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.