编写shell脚本,接受用户从键盘上输入的文件名,然后判断在当前目录下该文件名是否存在,不存在是提示“the fileis not exists ”,如果存在输出“the file is exists”.
时间: 2024-02-05 17:11:11 浏览: 76
判断文件是否存在的shell脚本代码
可以使用以下脚本实现:
```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”。注意要加上双引号以防止文件名中有空格等特殊字符引起的问题。
阅读全文