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.
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.
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.
How to Install Zsh (with Oh-My-Zsh) in Linux
https://linuxtldr.com/installing-zsh/
https://linuxtldr.com/installing-zsh/
Linux TLDR
How to Install Zsh (with Oh-My-Zsh) in Linux (Ultimate Guide)
The ZSH (or Z shell) can be said to be an extended version of the standard Bash shell interpreter, written by Paul Falstad in 1990 while studying at Princeton University.
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.
How to Install Fish Shell (with Starship) in Linux
https://linuxtldr.com/installing-fish/
https://linuxtldr.com/installing-fish/
Linux TLDR
How to Install Fish Shell (with Starship) in Linux
Fish is a user-friendly UNIX/Linux shell program that focuses on providing most of the known features by default without requiring any manual configuration.
Difference Between the ‘ls’ and ‘dir’ Command
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.
Stacking Directories With “pushd” and “popd” Commands for Easy Navigation
https://linuxtldr.com/pushd-and-popd-commands/
https://linuxtldr.com/pushd-and-popd-commands/
Linux TLDR
Stacking Directories With "pushd" and "popd" Commands for Easy Navigation
The pushd and popd commands are ways to efficiently navigate between different directory paths by stacking them in memory and popping them out when they are required using the index number.
Beginners Guide for Vdir Command in Linux
https://linuxtldr.com/vdir-command/
https://linuxtldr.com/vdir-command/
Linux TLDR
Beginners Guide for Vdir Command on Linux
The vdir command is an equivalent to the “ls -l -b” command, printing the content in long list format and showing escape characters on the file or directory name, just like the dir command is equivalent to the “ls -C -b” command.
What is Dash (/bin/dash) Shell in Linux?
https://linuxtldr.com/dash-shell/
https://linuxtldr.com/dash-shell/
Linux TLDR
What is Dash (/bin/dash) Shell on Linux?
Dash (or the Debian Almquist shell) is a UNIX/Linux shell that complies with the POSIX standard and earned the title of “lightest shell” (10x smaller in size) compared to Bash.
What is Restricted Bash Shell (or rbash) in Linux
https://linuxtldr.com/restricted-bash-shell/
https://linuxtldr.com/restricted-bash-shell/
Linux TLDR
What is Restricted Bash Shell (or rbash) on Linux
The restricted bash shell (or rbash) is a Linux shell that blocks certain features of the bash shell for both commands and shell scripts executed inside the restricted shell.
What is Chroot Jail and its Usecase in Linux
https://linuxtldr.com/chroot-jail/
https://linuxtldr.com/chroot-jail/
Linux TLDR
What is Chroot Jail and its Usecase on Linux
The chroot jail is a process of creating a sandbox environment for a user or script with restricted permissions assigned by the jail creator that can come into use for various reasons, followed by