标签: bash
我正在制作一个程序来读取文件/目录名称,它会说它是文件还是目录。当我执行我的文件时没有发生错误但没有任何反应......任何想法?
#!/bin/bash echo "Please enter the name of the file/directory" read var if test -d var then echo "It's a directory" fi if test -f var then echo "It's a file" fi