9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
# Program:
|
|
# 这是一个shell编写的helloworld程序。
|
|
# History:
|
|
# 2024/07/12 LouisFonda<yigencong@yahoo.com> first release
|
|
|
|
echo -e "Hello World! \a\n" # \a表示可以输出声音
|
|
exit 0
|