Commit cf0c2400 authored by Vitaly Lipatov's avatar Vitaly Lipatov

strings: use our func estrlist

parent 63ca6aa5
...@@ -32,13 +32,13 @@ remove_from_list() ...@@ -32,13 +32,13 @@ remove_from_list()
# Example: do_exclude_list "1 3" "1 2 3 4" -> "2 4" # Example: do_exclude_list "1 3" "1 2 3 4" -> "2 4"
do_exclude_list() do_exclude_list()
{ {
$ETERBUILDBIN/estrlist exclude "$@" estrlist exclude "$@"
} }
# regexp_exclude_list "22 1." "11 12 21 22" -> "21" # regexp_exclude_list "22 1." "11 12 21 22" -> "21"
regexp_exclude_list() regexp_exclude_list()
{ {
$ETERBUILDBIN/estrlist reg_exclude "$@" estrlist reg_exclude "$@"
} }
estrlist() estrlist()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment