shell 脚本的一些坑

前端之家收集整理的这篇文章主要介绍了shell 脚本的一些坑前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
 
 
#!/bin/bash

pklpath="/home/huoo/py-faster-rcnn/data/cache"

pkl="/home/huoo/py-faster-rcnn/data/cache/voc_2007_trainval_gt_roidb.pkl"

dire="/home/huoo/py-faster-rcnn/output"

if [[ -d "$dire" ]]; then  
     echo "exit"  
    #mkdir -p $dire    # create dire
    rm -rf $dire      #del dire
else 
    echo "dire is not"
fi

#判断文件夹是否存在 -d  
if [[ -d "$pklpath" ]]; then  
    echo "d  ddd"  
else  
    echo "nono no"  
fi  

if [[ ! -x "$pkl" ]]; then  
    echo "not exist"  
else  
    echo "exist pkl"  
fi  

if [[ -f "$pkl" ]]; then   
    echo "exist"    
    #mkdir -p $dire    
    rm -f $pkl      
fi
原文链接:https://www.f2er.com/bash/388214.html

猜你在找的Bash相关文章