07 2023 档案
Brew doctor says: "Warning: /usr/local/include isn't writable."
摘要:解决办法: 高版本的Mac系统用这个命令解决 ``` sudo chown -R $(whoami) $(brew --prefix)/* ``` 低版本的Mac系统 ``` sudo chown -R $USER:admin /usr/local/include brew doctor ```
阅读全文
shell脚本批量启动jar文件
摘要:#!/bin/sh export GATEWAY=/home/SpaceObj/spaceobj-gateway-1.0.jar export SYSTEM=/home/SpaceObj/spaceobj-system-1.0.jar export GATEWAY_log=/home/SpaceOb
阅读全文
日期时间格式化
摘要:``` // 日期格式化 parseTime(time, pattern) { if (arguments.length 0 || !time) { return null; } let date; date = new Date(time); var h = date.getHours(); if
阅读全文