»
(008) CubeIDE Implementation of USB Peripherals*
(018) C99 pointer*
(019) C99 With only value assignment*
(022) POSIX pthread multi-threads mutex*
(023) POSIX pthread multi-threads programming*
(027) C99 time and wait*
(028) High-precision calculation with GMP*
(029) Web Service Lib*
(030) International Components for Unicode (ICU)*
(031) Performance of C is higher than C++, because...*
🍓(005) Clone 360 Browser Core Source Code Script
#!/bin/bash
num=1
while [ $num -le 2000 ]; do
git clone --depth 10 -b 133.0.6837.1 https://chromium.googlesource.com/chromium/src.git chromium-src
if [ $? -ne 0 ]; then
num=$(($num+1))
else
break
fi
done
参考内容:https://blog.csdn.net/qq_27788177/article/details/130099179