#!/bin/bash
file_path="/opt/boot-jar/sh/mdt.sh"
if [ -e "$file_path" ]; then
echo "File exists"
else
echo "File does not exist"
fi
demo sh
最新推荐文章于 2025-06-09 22:36:20 发布
#!/bin/bash
file_path="/opt/boot-jar/sh/mdt.sh"
if [ -e "$file_path" ]; then
echo "File exists"
else
echo "File does not exist"
fi