shell脚本一百例
时间: 2023-10-15 22:23:31 浏览: 112
当然,我可以为您提供一些常见的Shell脚本示例。这是一个简单的示例列表,涵盖了不同的用例和功能:
1. 打印Hello World:
```shell
echo "Hello World"
```
2. 输出当前日期和时间:
```shell
echo $(date)
```
3. 使用变量:
```shell
name="John"
echo "My name is $name"
```
4. 读取用户输入:
```shell
echo "What is your name?"
read name
echo "Hello, $name"
```
5. 判断条件并执行不同命令:
```shell
age=18
if [ $age -ge 18 ]; then
echo "You are an adult"
else
echo "You are not an adult"
fi
```
6. 循环迭代:
```shell
for i in {1..5}
do
echo "Iteration: $i"
done
```
7. 迭代目录中的文件:
```shell
for file in /path/to/directory/*
do
echo "Processing file: $file"
done
```
8. 使用函数:
```shell
greeting() {
echo "Hello, $1"
}
greeting "John"
```
9. 检查文件是否存在:
```shell
if [ -e /path/to/file ]; then
echo "File exists"
else
echo "File does not exist"
fi
```
10. 执行命令并将结果存储到变量中:
```shell
files=$(ls /path/to/directory)
echo "Files: $files"
```
这只是一些基本示例,您可以根据自己的需求进行相应的修改和扩展。希望对您有所帮助!
阅读全文