Basic bash script tutorial

Bash Script Tutorial

1. Script Basics

1.1 Creating a Bash Script

  1. Create a script file with a .sh extension:

    bash 复制代码
    touch myscript.sh
  2. Make the script executable:

    bash 复制代码
    chmod +x myscript.sh
  3. Add the shebang line at the top to specify the interpreter:

    bash 复制代码
    #!/bin/bash

1.2 Running a Bash Script

Run the script from the terminal by providing the path:

bash 复制代码
./myscript.sh

2. Variables

2.1 Defining Variables

Variables do not need a data type declaration in Bash:

bash 复制代码
name="John"
age=25

2.2 Accessing Variables

Use the $ symbol to access a variable's value:

bash 复制代码
echo "My name is $name and I am $age years old."

2.3 Reading User Input

You can use the read command to get input from the user:

bash 复制代码
echo "Enter your name:"
read user_name
echo "Hello, $user_name!"

3. Conditionals

3.1 if Statements

bash 复制代码
if [ condition ]; then
  # Code to execute if the condition is true
fi

3.2 if-else Statements

bash 复制代码
if [ condition ]; then
  echo "Condition is true"
else
  echo "Condition is false"
fi

3.3 if-elif-else Example

bash 复制代码
if [ $age -lt 18 ]; then
  echo "You are a minor."
elif [ $age -ge 18 ] && [ $age -lt 65 ]; then
  echo "You are an adult."
else
  echo "You are a senior."
fi

3.4 File Conditionals

Check if a file or directory exists:

bash 复制代码
if [ -f "/path/to/file" ]; then
  echo "File exists."
fi

if [ -d "/path/to/directory" ]; then
  echo "Directory exists."
fi

3.5 String Comparison

bash 复制代码
str1="hello"
str2="world"

if [ "$str1" == "$str2" ]; then
  echo "Strings are equal."
else
  echo "Strings are not equal."
fi

4. Loops

4.1 for Loop

bash 复制代码
for i in 1 2 3; do
  echo $i
done

4.2 for Loop with Range

bash 复制代码
for i in {1..5}; do
  echo $i
done

4.3 while Loop

bash 复制代码
count=1
while [ $count -le 5 ]; do
  echo $count
  ((count++))
done

4.4 until Loop

bash 复制代码
count=1
until [ $count -gt 5 ]; do
  echo $count
  ((count++))
done

5. Arrays

5.1 Declaring Arrays

bash 复制代码
fruits=("apple" "banana" "cherry")

5.2 Accessing Array Elements

bash 复制代码
echo ${fruits[0]}  # Output: apple

5.3 Looping Through an Array

bash 复制代码
for fruit in "${fruits[@]}"; do
  echo $fruit
done

5.4 Array Length

bash 复制代码
echo ${#fruits[@]}  # Output: 3

6. Functions

6.1 Defining a Function

bash 复制代码
function greet() {
  echo "Hello, $1!"
}

6.2 Calling a Function

bash 复制代码
greet "Alice"  # Output: Hello, Alice!

6.3 Returning Values

Bash functions return values using return or output:

bash 复制代码
function add() {
  local sum=$(( $1 + $2 ))
  echo $sum
}

result=$(add 10 20)
echo "Sum: $result"  # Output: Sum: 30

7. File and Directory Operations

7.1 Creating Directories

bash 复制代码
mkdir myfolder

7.2 Checking if a Directory Exists

bash 复制代码
if [ ! -d "myfolder" ]; then
  mkdir myfolder
fi

7.3 Listing Files in a Directory

bash 复制代码
for file in *; do
  echo $file
done

8. Input/Output Redirection

8.1 Redirecting Output to a File

bash 复制代码
echo "Hello, World!" > output.txt  # Overwrites the file
echo "Append this line" >> output.txt  # Appends to the file

8.2 Redirecting Input from a File

bash 复制代码
while read line; do
  echo $line
done < input.txt

8.3 Redirecting Error Output

bash 复制代码
command 2> error.log  # Redirect stderr to error.log
command > output.log 2>&1  # Redirect stdout and stderr to output.log

9. Special Variables

9.1 Positional Parameters

bash 复制代码
#!/bin/bash
echo "Script name: $0"
echo "First argument: $1"
echo "Second argument: $2"

9.2 Script Exit Status

bash 复制代码
command
if [ $? -eq 0 ]; then
  echo "Command succeeded."
else
  echo "Command failed."
fi

9.3 Looping Through Arguments

bash 复制代码
for arg in "$@"; do
  echo "Argument: $arg"
done

10. Miscellaneous

10.1 Exit Script with Status Code

bash 复制代码
if [ "$user" != "admin" ]; then
  echo "Access denied."
  exit 1
fi

10.2 Sleeping for a Few Seconds

bash 复制代码
sleep 5  # Waits for 5 seconds

10.3 Commenting in Bash

Use # for single-line comments:

bash 复制代码
# This is a comment
echo "This is code."

11. Combining Everything in a Complete Script Example

Here's a complete example script that demonstrates many of these concepts:

bash 复制代码
#!/bin/bash

# Function to create a directory if it doesn't exist
create_directory() {
  if [ ! -d "$1" ]; then
    mkdir "$1"
    echo "Directory '$1' created."
  else
    echo "Directory '$1' already exists."
  fi
}

# Greet the user
echo "Enter your name:"
read user_name
echo "Hello, $user_name!"

# Create directories
projects=("project1" "project2" "project3")
for project in "${projects[@]}"; do
  create_directory "$project"
done

# Example of a conditional
if [ "$user_name" == "admin" ]; then
  echo "Welcome, admin!"
else
  echo "You are not the admin."
fi

# Example of a loop
for i in {1..5}; do
  echo "Iteration $i"
done

# Function with return value
function add() {
  local result=$(( $1 + $2 ))
  echo $result
}

sum=$(add 10 20)
echo "The sum of 10 and 20 is: $sum"

相关推荐
又蓝11 分钟前
使用 Python 操作 Excel 表格
开发语言·python·excel
余~~1853816280023 分钟前
稳定的碰一碰发视频、碰一碰矩阵源码技术开发,支持OEM
开发语言·人工智能·python·音视频
Am心若依旧4091 小时前
[c++11(二)]Lambda表达式和Function包装器及bind函数
开发语言·c++
明月看潮生1 小时前
青少年编程与数学 02-004 Go语言Web编程 20课题、单元测试
开发语言·青少年编程·单元测试·编程与数学·goweb
大G哥1 小时前
java提高正则处理效率
java·开发语言
VBA63371 小时前
VBA技术资料MF243:利用第三方软件复制PDF数据到EXCEL
开发语言
轩辰~1 小时前
网络协议入门
linux·服务器·开发语言·网络·arm开发·c++·网络协议
小_太_阳2 小时前
Scala_【1】概述
开发语言·后端·scala·intellij-idea
向宇it2 小时前
【从零开始入门unity游戏开发之——unity篇02】unity6基础入门——软件下载安装、Unity Hub配置、安装unity编辑器、许可证管理
开发语言·unity·c#·编辑器·游戏引擎
古希腊掌管学习的神2 小时前
[LeetCode-Python版]相向双指针——611. 有效三角形的个数
开发语言·python·leetcode