Shell script notes I used this tutorial to learn shell scripting: Shell Scripting Tutorial-Steve Parker. I given my executing result for almost every ...
分类:
系统相关 时间:
2020-06-26 22:22:32
阅读次数:
75
三、课堂目标 理解hbase的核心概念 掌握hbase的特点 掌握hbase的架构 掌握hbase存储数据结构 掌握hbase的安装部署 掌握hbase shell命令基本操作 四、知识要点 1. habse是什么 漫画学习hbase 最易懂的Hbase架构原理解析http://developer. ...
分类:
其他好文 时间:
2020-06-26 22:16:02
阅读次数:
61
1. 安装之前,先清除之前安装的旧版本 docker,如果有的话。 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrot ...
分类:
系统相关 时间:
2020-06-26 22:13:24
阅读次数:
59
修改指定位置 sudo nvim /usr/share/themes/主题名/gnome-shell/gnome-shell.css 主题名可以根据neofetch或screenfetch查看对应的Theme 进入文件后选择搜索 .candidate-popup-content 在该类下添加font ...
分类:
其他好文 时间:
2020-06-26 20:33:28
阅读次数:
119
一、AndroidDriver下的方法 1、启动其他app /使用命令获取adb shell dumpsys window windows | findstr "mCurrentFocus" Activity activity=new Activity("appPackage", "appActiv ...
分类:
移动开发 时间:
2020-06-26 20:27:19
阅读次数:
109
转自http://www.zsythink.net/archives/2252 场景一:判断变量是否为空 我们可以直接判断变量是否为空,方法如下 如上图所示,变量值非空时返回真(即返回值为0),使用上述方法判断变量值是否为空时,[ ] 与 [[ ]] 没有区别,上例中,变量值非空,返回真,我们可以使 ...
分类:
系统相关 时间:
2020-06-26 18:23:20
阅读次数:
64
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:
移动开发 时间:
2020-06-26 14:58:06
阅读次数:
105
目录 Hive 简介 什么是Hive 为什么使用 Hive Hive 特点 Hive 和 RDBMS 的对比 Hive的架构 1、用户接口: shell/CLI, jdbc/odbc, webui Command Line Interface 2、跨语言服务 : thrift server 提供了一 ...
分类:
其他好文 时间:
2020-06-26 14:53:40
阅读次数:
70
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:
移动开发 时间:
2020-06-26 14:37:50
阅读次数:
104
一、循环 1.for循环 1)格式 基本格式 for var in list do 循环体 done 其中 list是可迭代的对象,常见的包括: 数组 $(seq n m) 表示从n到m的正整数序列 {n..m} 表示从n到m的正整数 value1 value2 value3 ... 一系列值,可以 ...
分类:
系统相关 时间:
2020-06-26 14:23:48
阅读次数:
76