11 2020 档案
摘要:https://blog.csdn.net/weixin_40438455/article/details/103779838
阅读全文
摘要:面板制作方法 注意几个关键点 content "" position absolute left:50 transform :tranlateX -50
阅读全文
摘要:nohup和&的区别 & : 指在后台运行 nohup : 不挂断的运行,注意并没有后台运行的功能,,就是指,用nohup运行命令可以使命令永久的执行下去,和用户终端没有关系,例如我们断开SSH连接都不会影响他的运行,注意了nohup没有后台运行的意思;&才是后台运行 &是指在后台运行,但当用户推出
阅读全文
摘要:const arr = [2, 1, 5, 3, 6, 4, 8, 9, 7] function getSequence (arr) { // const p = arr.slice() // [2, 1, 5, 3, 6, 4, 8, 9, 7] const p = new Array(arr.l
阅读全文
摘要:Your Bash script is passing the Expect commands on the standard input of expect. That is what the here-document <<EOD does. However, expect... expects
阅读全文
摘要:解决方法是,不使用cisco anyconnect,使用openconnect命令行工具: 1.安装opennconnect 2.sudo openconnect --user xxx --protocol=anyconnect xx.com
阅读全文