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 ``` 阅读全文
posted @ 2023-07-11 22:26 张伯灵 阅读(20) 评论(0) 推荐(0) 编辑
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 阅读全文
posted @ 2023-07-08 11:01 张伯灵 阅读(186) 评论(0) 推荐(0) 编辑
日期时间格式化
摘要:``` // 日期格式化 parseTime(time, pattern) { if (arguments.length 0 || !time) { return null; } let date; date = new Date(time); var h = date.getHours(); if 阅读全文
posted @ 2023-07-02 09:58 张伯灵 阅读(11) 评论(0) 推荐(0) 编辑