打开ITerm终端 进入命令输入,sudo su,输入密码 创建.bash_profile文件touch .bash_profile 打开.bash_profile文件open .bash_profile 弹出文本编辑 export JAVA_HOME=/Library/Java/JavaVirtu ...
分类:
编程语言 时间:
2020-04-21 12:42:05
阅读次数:
121
1. 控件为什么用weak修饰:控件已经被UIView强指针指向,如果用strong, 则viewController也将强指针指向控件, 在view销毁时可能无法销毁该控件。 2. command + shift + h : 模拟器回到主界面 command + shift + h(h连按两下) ...
分类:
移动开发 时间:
2020-04-19 10:53:12
阅读次数:
70
Here is instruction show you guide on how to use Obd2 diagnostic tool ASIST diagnostics to reprogram OCS control unit for Nissan Sentra. IMPORTANT: Se ...
分类:
其他好文 时间:
2020-04-19 10:30:32
阅读次数:
66
//移动端 $(".demo").on("touchstart", function(e) { e.preventDefault(); startX = e.originalEvent.changedTouches[0].pageX, startY = e.originalEvent.changed ...
分类:
移动开发 时间:
2020-04-18 14:02:44
阅读次数:
111
@Override public void onResume() { super.onResume(); getView().setFocusableInTouchMode(true); getView().requestFocus(); getView().setOnKeyListener(new ...
分类:
移动开发 时间:
2020-04-17 20:13:59
阅读次数:
261
重点,复制之前的my.cnf 要能用,touch一个是不行的; 1、先新建文件夹: mkdir -p /docker/mysql/{logs,conf,data} 2、获取镜像:docker pull mysql:5.7 3、启动: docker run -p 3306:3306 --privile ...
分类:
数据库 时间:
2020-04-16 19:37:54
阅读次数:
120
环境:CentOS7.664位,YUM安装vsftpd1、yum-yinstallvsftpd2、useraddsundun-s/sbin/nologin-d/home/ftp3、echo"sundun"|passwd--stdinsundun4、touch/etc/vsftpd/vsftpd.chroot_list5、echo"sundun">/et
分类:
其他好文 时间:
2020-04-14 23:03:21
阅读次数:
289
Linux命令: 1、cat:打开文件 2、cd:打开文件夹 3、cat>name:创建名为“name”的文件 4、touch name:创建名为“name”的文件 5、rm name:删除名为“name” 的文件 6、 echo hello > sys.txt:将hello写入到sys.txt文件 ...
分类:
系统相关 时间:
2020-04-14 17:02:23
阅读次数:
73
$()与 ` ` touch $(date +%F).log { } touch {1..3}.file touch{1..10..2}.file rm -rf .bash_history history -c history !编号 whatis 查命令是啥,然后用man命令 /etc/issue ...
分类:
其他好文 时间:
2020-04-14 00:52:08
阅读次数:
70
文件系统 cd 进入目录 ls 列出目录信息,ls al (或 ll)列出详细信息 touch 新建文件 mkdir 新建目录 rm 删除文件或目录 cp 复制 mv 移动(或重命名) 搜索、查找、读取 tail 从文件尾部读取 head 从文件头部读取 cat 读取整个文件 more/less 分 ...
分类:
系统相关 时间:
2020-04-13 18:09:13
阅读次数:
99