bash shell脚本实例
时间: 2023-06-05 19:47:55 浏览: 181
下面是一个简单的 bash shell 脚本示例:
```
#!/bin/bash
echo "Hello, World!"
# 获取当前目录
current_dir=$(pwd)
echo "当前目录:$current_dir"
# 获取当前日期和时间
current_date_time=$(date +"%Y-%m-%d %H:%M:%S")
echo "当前日期和时间:$current_date_time"
```
运行方式:
```
chmod +x script.sh
./script.sh
```
阅读全文