Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
9623b141
Commit
9623b141
authored
Dec 19, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
estrlist: add new verbs: first, last
parent
62bbe429
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
tools_estrlist
bin/tools_estrlist
+14
-0
No files found.
bin/tools_estrlist
View file @
9623b141
...
...
@@ -53,6 +53,16 @@ isempty()
is_empty
"
$@
"
}
first
()
{
echo
"
$*
"
|
cut
-f1
-d
" "
}
last
()
{
echo
"
$*
"
| xargs
-n1
echo
2>/dev/null |
tail
-n1
}
has_space
()
{
# not for dash:
...
...
@@ -280,6 +290,8 @@ help()
echo
" list [word list] - just list words line by line"
echo
" count [word list] - print word count"
echo
" contains <word> [word list] - check if word list contains the word"
echo
" first <word list> - print first word"
echo
" last <word list> - print last word"
echo
echo
"Examples:"
# example reg_remove "1." "11 12 21 22"
...
...
@@ -297,6 +309,8 @@ help()
example_res has exo
"exactly"
example_res match
"M[0-9]+"
"M250"
example_res match
"M[0-9]+"
"MI"
example_res first
"1 2 3"
example_res last
"1 2 3"
}
COMMAND
=
"
$1
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment