Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮   
     ❯   

BashVariables


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=42echo "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 variableecho "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 functionmy_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

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



×

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

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 ourterms of use,cookies andprivacy policy.

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


[8]ページ先頭

©2009-2025 Movatter.jp