獲取時間戳和隨機數
阿新 • • 發佈:2019-01-22
SHELL
currentutctimestamp=`date -d now +%s`
randomnumber0=`head -200 /dev/urandom | cksum | cut -c -8`
randomnumber=`cat /proc/sys/kernel/random/uuid | cut -c 3,6,12,16,23,26,30,34`
其中cut用來擷取字串,以字元模式取字串,前8個為 -8 ,按位置取,則依次使用位置3,6,12,16,23,26,30,34,共取了8個
python
需要Import time和random,string。ascII_letters digits是大小寫字母和數字currentutctimestamp = str(time.time()).split('.')[0] randomstr = ''.join(random.sample(string.ascii_letters + string.digits, 8))
C++
#include <ctime>
#include <cstdlib>
std::srand(unsigned(std::time(0)));
randnumber = (int)(8 * std::rand() / (RAND_MAX + 1.0));
隨機取0-7的數字