【Shell】shell字符串过滤

Shell字符串过滤

  • 服务器做CppCheck时,需要过滤一些Check的文件。比如MakeFile、证书文件等等。
  • 方式很多,这里采用了字符串过滤,将非检测的文件过滤掉。
  • 过滤check文件脚本
# filter
filter_make_file="Makefile"
filter_pem_file=".pem"
count=-1

# files_array变量包含了所有要检测的文件(过滤前)
for value in ${files_array[@]}
do
# 过滤
if [[ $value =~ $filter_make_file || $value =~ $filter_crt_file ]]
then
continue
fi
count=$[$count+1]
# 将检测文件(过滤后)加入新的数组中
new_files_array[$count]=$value
done

# Now new_files_array contain check file
  • 上述脚本,就是利用了shell字符串过滤。
#!/bin/bash -ex                                                                                                                          
str='MakefileTest'
str1='Makefile' 
# 判断str 是否包含 str1 字符串
if [[ $str =~ $str1 ]];then
	echo "yes"
else
	echo "no"
fi

你可能感兴趣的:(Linux)