判断文件是否存在
hadoop fs -test -e /hdfs_dir
if [ $? -ne 0 ]; then
echo "Directory not exists!"
fi
if [ $? -ne 1 ]; then
echo "Directory exists!"
fi
本文共 194 字,大约阅读时间需要 1 分钟。
判断文件是否存在
hadoop fs -test -e /hdfs_dir
if [ $? -ne 0 ]; then
echo "Directory not exists!"
fi
if [ $? -ne 1 ]; then
echo "Directory exists!"
fi
转载于:https://www.cnblogs.com/huiwq1990/p/3956255.html