$FILE
を使用できます 以下のようにディレクトリと連結してフルパスを作成します。
FILE="$1"
if [ -e ~/.myexample/"$FILE" ]; then
echo "File exists"
else
echo "File does not exist"
fi
$FILE
を使用できます 以下のようにディレクトリと連結してフルパスを作成します。
FILE="$1"
if [ -e ~/.myexample/"$FILE" ]; then
echo "File exists"
else
echo "File does not exist"
fi