在 Linux 中,Bash 脚本是一种用于自动执行一系列命令的脚本语言
打开文本编辑器,如 nano、vim 或 gedit。
在文件的第一行添加一个 shebang(#!),指定用于解释脚本的 Bash 解释器路径。通常情况下,可以使用默认的 Bash 解释器:
#!/bin/bash
例如,以下脚本将显示当前目录下的所有文件和文件夹,并将结果存储在名为 file_list.txt
的文件中:
#!/bin/bash
# This script lists all files and directories in the current directory and saves the result in file_list.txt
ls > file_list.txt
保存脚本文件,例如命名为 my_script.sh
。
为脚本文件添加可执行权限。在终端中,使用 chmod
命令为脚本文件添加可执行权限:
chmod +x my_script.sh
./my_script.sh
现在,你已经成功编写并运行了一个简单的 Bash 脚本。你可以根据需要添加更多命令和逻辑来满足你的需求。