0

我试过这个:

#!/bin/bash
FILE=$1
if [ -f $FILE ];
then
   echo "File $FILE exists"
else
   echo "File $FILE does not exists"
fi

但我不确定这是否适合我正在做的事情。

4

0 回答 0