#!/bin/bash # Program: # 这是一个shell编写的helloworld程序。 # History: # 2024/07/12 LouisFonda first release echo -e "Hello World! \a\n" # \a表示可以输出声音 exit 0