About 15,800 results
Open links in new tab
  1. Linux operators: Using |, >, >>, &, &&, !, =, () and many more

    Jul 11, 2024 · Some of the most convenient ‘tricks’ on Linux depend on the use of a handful of special characters. This post looks at a number of command operators on Linux and shows how they work.

  2. What Are the Special Dollar Sign Shell Variables? - Baeldung

    Jul 6, 2024 · These arguments are accessible within the script using a set of special dollar sign variables called positional parameters. Furthermore, we can use them to interact with user-provided data and …

  3. What are the special dollar sign shell variables? - Stack Overflow

    Sep 14, 2012 · They are all documented in the bash man page. The only oddity is that $_ is only mentioned in the context of its use in the MAILPATH variable.

  4. The Linux command line for beginners - Ubuntu

    In this section you’ve learnt about the dangers of the root account, and how modern Linux systems like Ubuntu try to reduce the risk of danger by using sudo. But any use of superuser powers should be …

  5. 15 Special Characters You Need to Know for Bash

    Oct 3, 2025 · That sequence of strange symbols on the Bash command line must mean something, right? We're breaking down special characters and how to use them.

  6. What's the difference between <<, <<< and < < in bash?

    Sep 27, 2015 · In this example we tell wc program to wait for EOF string, then type in five words, and then type in EOF to signal that we're done giving input. In effect, it's similar to running wc by itself, …

  7. Unix / Linux - Special Variables - Online Tutorials Library

    Explore the various special variables in Unix, their usage, and how they can enhance your scripting and command line experience.

  8. linux - What is the meaning of $? in a shell script? - Unix & Linux ...

    Feb 20, 2011 · In simpler terms, it's the exit status of the last command. Cjm's answer is correct, but $? can be used in silly ways in shell scripts, and I'd like to warn against that. A lot of bad shell scripts …

  9. Bash Tutorial - W3Schools

    Why Use Bash? It is widely available on Unix/Linux systems, making scripts portable. Supports powerful scripting features, including loops, conditionals, and functions. Provides command history and tab …

  10. Special Variables in Bash Shell [With Script Examples] - Linux Handbook

    Apr 4, 2023 · Recently, I covered how you can use the number of arguments in bash that involved the use of the $# variable which is one of the special variables of bash. And in this guide, I will walk you …