shell 判断文件是否存在,没有则创建时间:2023-03-09 13:08:35 没有该文件则创建,有则 ls -l 输出文件信息。 #!/bin/bash echo "enter the name:" read filename if test -e $filename ; then ls -l $filename else touch $filename fi 输出 enter the name: sss.sh -rwxr-xr-x root root Dec : sss.sh