mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
3f0bcdc3ef
- Exhaustively document cancellation points - Rename SIGCANCEL to SIGTHR just like BSDs - Further improve POSIX thread cancellations - Ensure asynchronous cancellations work correctly - Elevate the quality of getrandom() and getentropy() - Make futexes cancel correctly on OpenBSD 6.x and 7.x - Add reboot.com and shutdown.com to examples directory - Remove underscore prefix from awesome timespec_*() APIs - Create assertions that help verify our cancellation points - Remove bad timespec APIs (cmp generalizes eq/ne/gt/gte/lt/lte)
15 lines
619 B
Bash
Executable file
15 lines
619 B
Bash
Executable file
#!/bin/sh
|
|
[ -d libc/str ] || exit
|
|
[ -x o//examples/curl.com ] || make -j8 o//examples/curl.com || exit
|
|
mkdir -p o/tmp/ || exit
|
|
|
|
shineget() {
|
|
echo $2
|
|
o//examples/curl.com $2 >o/tmp/$$ || exit
|
|
mv o/tmp/$$ $1 || exit
|
|
}
|
|
|
|
shineget libc/str/blocks.txt https://www.unicode.org/Public/UCD/latest/ucd/Blocks.txt
|
|
shineget libc/str/unicodedata.txt https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
|
|
shineget libc/str/eastasianwidth.txt https://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt
|
|
shineget libc/str/SpecialCasing.txt https://www.unicode.org/Public/UCD/latest/ucd/SpecialCasing.txt
|