Shell判断某文件夹下是否存在xxx开头的字符串

◇◆丶佛笑我妖孽 提交于 2020-02-26 01:16:21

Usage: 

          bash judge_prefix_string.sh TARGET_DIR TARGET_STR

#!/bin/bash

TARGET_DIR=$1
TARGET_STR=$2

ls $TARGET_DIR/$TARGET_STR*
if [ $? -ne 0 ];then
    echo "file begin with $TARGET_STR is not existed!"
else
    echo "file begin with $TARGET_STR is existed!"
fi

for f in `ls $TAGET_DIR`;do
    if [[ "$f" =~^"$TARGET_STR".* ]]; then
        echo "file existed!"
    else
        echo "file not existed!"
    fi
done

  

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!