Last active
November 17, 2018 00:58
-
-
Save photonxp/880943fd3199b6571bc3b2508e021427 to your computer and use it in GitHub Desktop.
check if a line of tag values is the targeted tag line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
tagval="$1" | |
fpath="$2" | |
# unable to check $? for this gawk | |
line_tag=$(gawk -v ptn="$tagval([[:space:]]|$)" '$0~ptn && NR >= 3 && NR <= 5 {print NR":"$0;exit;}' "$fpath") | |
echo "line_tag: $line_tag" | |
fpath_taglist=./tag_list.txt | |
mapfile -t arr_taglist_infile < <(cat "$fpath_taglist") | |
check_is_target_line_tag(){ | |
# return 0: is target tagline; | |
# return 1: is NOT target tagline; | |
line_tag="$1" | |
# check "" line_tag | |
if [ "y" == "y$line_tag" ] | |
then | |
return 1 | |
fi | |
# check "tag:" part in line_tag | |
printf "$line_tag" | grep -q 'tag:' | |
retval_grep=$? | |
if [ 0 -eq $retval_grep ] | |
then | |
return 1 | |
fi | |
taglist_inline="$(echo ${line_tag##*:})" | |
#echo "taglist_inline:" $taglist_inline | |
arr_taglist_inline=($taglist_inline) | |
length_arr_taglist_inline=${#arr_taglist_inline[@]} | |
if [ 1 -eq $length_arr_taglist_inline ] | |
then | |
return 0 | |
fi | |
match_tag_inline_to_infile(){ | |
tag_inline=$1 | |
flag_matched=1 | |
for tag_infile in "${arr_taglist_infile[@]}" | |
do | |
if [ "$tag_infile" == "$tag_inline" ] | |
then | |
flag_matched=0 | |
break | |
fi | |
done | |
} | |
match_first_2_tags_to_tagfile(){ | |
# 0: all tags are matched in tag file | |
# 1: a tag is not matched in tag file | |
flag_tagline=0 | |
#echo "match_first_2_tags_to_tagfile====" | |
for i in `echo 0 1` | |
do | |
match_tag_inline_to_infile ${arr_taglist_inline[$i]} | |
if [ 1 -eq $flag_matched ] | |
then | |
flag_tagline=1 | |
break | |
fi | |
done | |
} | |
if [ 2 -le $length_arr_taglist_inline ] | |
then | |
match_first_2_tags_to_tagfile | |
return $flag_tagline | |
fi | |
} | |
check_is_target_line_tag "$line_tag" | |
echo '$?:' $? | |
line_num="${line_tag%%:*}" | |
echo "line_num: " $line_num |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment