编写shell脚本,接收用户从键盘上输入的文件名,然后判断在当前目录下该文件名是否存在,不存在时提示“the file is not exists”
时间: 2023-12-07 19:03:38 浏览: 105
shell脚本判断文件夹或目录是否存在,不存在则创建新文件夹或目录.sh
5星 · 资源好评率100%
可以使用以下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` 参数用于判断文件是否存在。
阅读全文