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
048059ba
Commit
048059ba
authored
May 20, 2017
by
neil
Committed by
GitHub
May 20, 2017
Browse files
Merge pull request #854 from Neilpang/dev
Dev
parents
4e20d89d
ed3dda7d
Changes
1
Show whitespace changes
Inline
Side-by-side
acme.sh
View file @
048059ba
#!/usr/bin/env sh
VER=2.
6.9
VER=2.
7.0
PROJECT_NAME="acme.sh"
...
...
@@ -450,31 +450,33 @@ _h2b() {
fi
hex=$(cat)
i
=1
j
=2
i
c=""
j
c=""
_debug2 _URGLY_PRINTF "$_URGLY_PRINTF"
if [ -z "$_URGLY_PRINTF" ]; then
while true; do
h="$(printf "%s" "$hex" | cut -c $i-$j)"
if _exists xargs; then
_debug2 "xargs"
echo "$hex" | sed 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/gI' | xargs printf
else
for h in $(echo "$hex" | sed 's/\([0-9A-F]\{2\}\)/ \1/gI'); do
if [ -z "$h" ]; then
break
fi
printf "\x$h%s"
i="$(_math "$i" + 2)"
j="$(_math "$j" + 2)"
done
fi
else
while true; do
ic="$(printf "%s" "$hex" | cut -c $i)"
jc="$(printf "%s" "$hex" | cut -c $j)"
if [ -z "$ic$jc" ]; then
break
for c in $(echo "$hex" | sed 's/\([0-9A-F]\)/ \1/gI'); do
if [ -z "$ic" ]; then
ic=$c
continue
fi
jc=$c
ic="$(_h_char_2_dec "$ic")"
jc="$(_h_char_2_dec "$jc")"
printf '\'"$(printf "%o" "$(_math "$ic" \* 16 + $jc)")""%s"
i="
$(_math "$i" + 2)
"
j="
$(_math "$j" + 2)
"
i
c
=""
j
c
=""
done
fi
...
...
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