在 Linux 中,Bash 腳本是一種用于自動執(zhí)行一系列命令的腳本語言
打開文本編輯器,如 nano、vim 或 gedit。
在文件的第一行添加一個 shebang(#!),指定用于解釋腳本的 Bash 解釋器路徑。通常情況下,可以使用默認(rèn)的 Bash 解釋器:
#!/bin/bash
例如,以下腳本將顯示當(dāng)前目錄下的所有文件和文件夾,并將結(jié)果存儲在名為 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
。
為腳本文件添加可執(zhí)行權(quán)限。在終端中,使用 chmod
命令為腳本文件添加可執(zhí)行權(quán)限:
chmod +x my_script.sh
./my_script.sh
現(xiàn)在,你已經(jīng)成功編寫并運(yùn)行了一個簡單的 Bash 腳本。你可以根據(jù)需要添加更多命令和邏輯來滿足你的需求。