mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-23 05:31:42 +00:00
Get rid of _find_num
This commit is contained in:
parent
31b67ab92e
commit
a25b2af66c
@ -149,9 +149,18 @@ _find_zone() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
_debug "Looking for zone \"${_attempted_zone}\""
|
_debug "Looking for zone \"${_attempted_zone}\""
|
||||||
_line_num=$(echo "$_zone_names" | _find_linenum "$_attempted_zone")
|
|
||||||
if [ -n "$_line_num" ]; then
|
# Take care of "." and only match whole lines. Note that grep -F
|
||||||
_zone_id=$(echo "$_zone_ids" | sed "${_line_num}q;d")
|
# cannot be used because there's no way to make it match whole
|
||||||
|
# lines.
|
||||||
|
regex="^$(echo "$_attempted_zone" | sed 's/\./\\./g')$"
|
||||||
|
line_num=$(echo "$_zone_names" \
|
||||||
|
| grep -n "$regex" \
|
||||||
|
| cut -d : -f 1
|
||||||
|
)
|
||||||
|
|
||||||
|
if [ -n "$line_num" ]; then
|
||||||
|
_zone_id=$(echo "$_zone_ids" | sed "${line_num}q;d")
|
||||||
_debug "Found relevant zone \"$_attempted_zone\" with id \"$_zone_id\" - will be used for domain \"$_domain\"."
|
_debug "Found relevant zone \"$_attempted_zone\" with id \"$_zone_id\" - will be used for domain \"$_domain\"."
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
@ -160,30 +169,4 @@ _find_zone() {
|
|||||||
_strip_counter=$(_math "$_strip_counter" + 1)
|
_strip_counter=$(_math "$_strip_counter" + 1)
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
#-- _find_linenum()-----------------------------------------------------
|
|
||||||
# Returns line number of line (supplied as an argument) in STDIN.
|
|
||||||
#
|
|
||||||
# Example:
|
|
||||||
#
|
|
||||||
# printf "a\nb\nc" | _find_linenum "b"
|
|
||||||
#
|
|
||||||
# This will:
|
|
||||||
# - print out 2 because that's the line number of "b"
|
|
||||||
# - return code 0 because it was found
|
|
||||||
|
|
||||||
_find_linenum() {
|
|
||||||
_current_line_num=0
|
|
||||||
while read -r line; do
|
|
||||||
_current_line_num=$(_math "$_current_line_num" + 1)
|
|
||||||
if [ "$line" = "$1" ]; then
|
|
||||||
# Found! Let's echo the line number and quit
|
|
||||||
echo "$_current_line_num"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
# Not found
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# vim: et:ts=2:sw=2:
|
# vim: et:ts=2:sw=2:
|
||||||
|
Loading…
Reference in New Issue
Block a user