[フレーム]

Bash Variables


Understanding Variables in Bash

Variables in Bash are used to store data that can be used and manipulated throughout your script or command-line session. Bash variables are untyped, meaning they can hold any type of data.


Declaring Variables

Variables are declared by simply assigning a value to a name. There should be no spaces around the equal sign:

  • variable_name=value
  • To access the value of a variable, prefix it with a dollar sign: $variable_name

Example

name="John Doe"
echo "Hello, $name!"
number=42
echo "The number is $number"

Environment Variables

Environment variables are special variables that affect the way processes run on your system. They are often used to store system-wide values like the location of executables or the default editor.

Example: Using Environment Variables

# Display the PATH environment variable
echo "Your PATH is $PATH"


Local vs. Global Variables

Local variables are only available within the block of code in which they are defined, such as within a function. Global variables are accessible from anywhere in the script.

Example: Local Variable

# Define a local variable in a function
my_function() {
 local local_var="I am local"
 echo $local_var
}
my_function

Common Variable Operations

Variables can be used in various operations, such as concatenation and arithmetic.

  • Concatenation: Combine strings using variables.
  • Arithmetic: Perform calculations using variables.

Example: Variable Operations

# Concatenation
greeting="Hello, "
name="World"
echo "$greeting$name"
# Arithmetic
num1=5
num2=10
sum=$((num1 + num2))
echo "The sum is $sum"


Track your progress - it's free!
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

FORUM ABOUT ACADEMY
W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.

AltStyle によって変換されたページ (->オリジナル) /