编写shell脚本,接受用户从键盘上输入的文件名,然后判断在当前目录下该文件名是否存在
时间: 2024-02-05 17:11:08 浏览: 135
可以使用以下脚本实现:
```bash
#!/bin/bash
# 从键盘读入文件名
read -p "请输入文件名: " filename
# 判断文件是否存在
if [ -e "$filename" ]; then
echo "$filename 存在"
else
echo "$filename 不存在"
fi
```
解释:
- `read -p` 用于从键盘读入用户输入的文件名,并将其保存在变量 `filename` 中。
- `-e` 参数用于测试文件是否存在,如果文件存在,则输出提示信息 `"文件名 存在"`,否则输出 `"文件名 不存在"`。
相关问题
编写shell脚本,接受用户从键盘上输入的文件名,然后判断在当前目录下该文件名是否存在,不存在是提示“the fileis not exists ”,如果存在输出“the file is exists”.
可以使用以下脚本实现:
```bash
#!/bin/bash
echo "请输入文件名:"
read filename
if [ -e "$filename" ]; then
echo "the file is exists"
else
echo "the file is not exists"
fi
```
说明:
1. `echo` 命令用于输出提示信息,`read` 命令用于读取用户从键盘上输入的文件名。
2. 使用 `-e` 参数判断文件是否存在,如果存在则输出“the file is exists”,否则输出“the file is not exists”。注意要加上双引号以防止文件名中有空格等特殊字符引起的问题。
编写shell脚本,接收用户从键盘上输入的文件名,然后判断在当前目录下该文件名是否存在,不存在时提示“the file is not exists”
可以使用以下shell脚本实现:
```bash
#!/bin/bash
echo "Please enter the file name: "
read filename
if [ -e "$filename" ]; then
echo "The file exists."
else
echo "The file is not exists."
fi
```
首先使用 `read` 命令接收用户输入的文件名,然后使用 `if` 判断当前目录下是否存在该文件,如果存在就输出“the file exists”,否则输出“the file is not exists”。其中 `-e` 参数用于判断文件是否存在。
阅读全文