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"

相关推荐
尘浮生29 分钟前
Java项目实战II基于Spring Boot的智慧生活商城系统的设计与实现(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·mysql·maven·生活
工作不忙1 小时前
关于SwitchCase中变量定义及使用变量的一些注意事项参数传递参数时不能实现多态动态绑定的问题c++语法
开发语言·c++·windows·开源·开源软件
安祝老师1 小时前
十四届蓝桥杯STEMA考试Python真题试卷第二套第二题
开发语言·python·算法·青少年编程·蓝桥杯
疯一样的码农2 小时前
Java初学者指南
java·开发语言
立黄昏粥可温2 小时前
Python 从入门到实战44(Pandas读写数据)
开发语言·python·pandas
muke_r2 小时前
C++——文件操作
开发语言·c++
cdut_suye2 小时前
Python编程探索:从基础语法到循环结构实践
开发语言·python·学习
LUwantAC3 小时前
Java学习路线:JUL日志系统(一)日志框架介绍
java·开发语言·学习
梦里水乡8573 小时前
基于MATLAB的农业病虫害识别研究
开发语言·matlab