会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
勇~勇
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
2019年12月23日
spctl命令返回的结果输入到文本中
摘要: 说一下我遇到的问题。 mac自动打包完之后上传到苹果商店公正,公正后需要检查一下公正的结果, spctl -a -v LBCast.app #查看是否公证成功 显示如下表示公证成功了,有Notarized字段 LBCast.app: accepted source=Notarized Develop
阅读全文
posted @ 2019-12-23 11:18 勇~勇
阅读(620)
评论(0)
推荐(0)
2019年12月20日
获取指定进程号,并kill掉
摘要: 直接上案例: 例子:获取nginx进程 方法:$ps -aux |grep nginx |grep -v grep |awk '{print $2}' 或者 $ps -ef |grep nginx |grep -v grep |awk '{print $2}' 例子:获取gerrit进程并kill掉
阅读全文
posted @ 2019-12-20 19:43 勇~勇
阅读(2793)
评论(0)
推荐(0)
2019年12月19日
Gerrit部署成功后project下不显示clone地址
摘要: gerrit部署成功后使用admin账号登录,在project All-projects下不显示clone地址,新建仓库也不显示。 原因是:默认安装没有安装插件download-commands 安装download-commands插件后就能正常显示了,
阅读全文
posted @ 2019-12-19 15:54 勇~勇
阅读(1700)
评论(2)
推荐(0)
2019年12月18日
jenkins打包iOS 报错:error: exportArchive: The data couldn’t be read because it isn’t in the correct format.
摘要: 在执行ios 打包的时候,我们通过执行下面的指令来打包ipa: mkdir arch archive_path=arch/${app_name}.xcarchive workspace_name=HPPlayTVAssistant xcodebuild clean -workspace ${work
阅读全文
posted @ 2019-12-18 14:39 勇~勇
阅读(1326)
评论(0)
推荐(0)
2019年12月16日
gerrit 版本下载
摘要: 链接:https://gerrit-releases.storage.googleapis.com 如下载gerrit-2.12.2.war https://gerrit-releases.storage.googleapis.com/gerrit-2.12.2.war
阅读全文
posted @ 2019-12-16 16:20 勇~勇
阅读(1721)
评论(0)
推荐(0)
2019年12月13日
grep -w ,grep -e,grep -v的使用
摘要: 1、grep -w-wDoes a word search.grep -w用于字符串精确匹配若文件中的内容包括如下:262 a326226如果 grep ‘26’ file,结果是三行全部都被显示若要精确匹配26所在行使用grep -w ‘26’ file 2、grep -e 显示文件中符合条件的字
阅读全文
posted @ 2019-12-13 10:11 勇~勇
阅读(17370)
评论(0)
推荐(0)
2019年12月6日
git仓库拆分
摘要: 例如: # 这就是那个大仓库 big-project $ git clone git@github.com:tom/big-project.git $ cd big-project # 把所有 `codes-eiyo` 目录下的相关提交整理为一个新的分支 eiyo $ git subtree spl
阅读全文
posted @ 2019-12-06 14:13 勇~勇
阅读(1139)
评论(0)
推荐(0)
2019年12月5日
解除TCL电视系统禁止adb安装
摘要: 我的问题:tcl电视能使用adb连接成功,但使用adb install安装软件时,提示错误 解决问题如下: $adb shell,输入:1. $setprop persist.tcl.debug.installapk 1 (默认参数为0) 2.$setprop persist.tcl.install
阅读全文
posted @ 2019-12-05 15:23 勇~勇
阅读(4799)
评论(1)
推荐(0)
一条命令解决:No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
摘要: 1、找到目录D:\android\Sdk\ndk-bundle\toolchains。(根据自己的安装路径找到)2、该路径下打开终端执行ln -sf aarch64-linux-android-4.9 mips64el-linux-android 如果找不到Sdk路径,可以参考: https://b
阅读全文
posted @ 2019-12-05 15:03 勇~勇
阅读(384)
评论(0)
推荐(0)
上一页
1
2
公告