Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
c4bf5eef
Commit
c4bf5eef
authored
Mar 08, 2017
by
neilpang
Browse files
add _upper_case and _lower_case
parent
e36340ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
c4bf5eef
...
...
@@ -299,6 +299,16 @@ _secure_debug3() {
fi
}
_upper_case
()
{
# shellcheck disable=SC2018,SC2019
tr
'a-z'
'A-Z'
}
_lower_case
()
{
# shellcheck disable=SC2018,SC2019
tr
'A-Z'
'a-z'
}
_startswith
()
{
_str
=
"
$1
"
_sub
=
"
$2
"
...
...
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