码迷,mamicode.com
首页 >  
搜索关键字:done    ( 2584个结果
Nginx代理之大文件下载失败问题
错误详细信息: Cloning into 'aplanmis-project'...remote: Enumerating objects: 176887, done.remote: Counting objects: 100% (176887/176887), done.remote: Compr ...
分类:其他好文   时间:2021-04-07 10:51:02    阅读次数:0
win10 anaconda tensorflow gpu openpose
win10 anaconda tensorflow gpu openpose done # # To activate this environment, use # # $ conda activate wind_202102 # # To deactivate an active environ ...
分类:Windows程序   时间:2021-04-06 14:47:55    阅读次数:0
centos7 集群整体操作脚本
1、在/root/bin目录创建脚本xcall.sh 2、脚本本周编写内容 [root@wd ~]# vi xcall.sh !/bin/bash for i in wd.idc.com wd2 wd1 do echo $i ssh $i "$*" done 3、修改脚本执行权限 [root@wd ...
分类:其他好文   时间:2021-03-05 12:59:52    阅读次数:0
shell编程基础二
一、流程控制 while循环:只要条件满足一直循环 read -p "请输入一个数字:" white_data while [ ${white_data} -lt 20 ] do echo ${white_data} white_data=$((white_data + 1)) done until ...
分类:系统相关   时间:2021-02-27 13:22:57    阅读次数:0
把一个文本文档中只有一个数字的行给打印出来
题目要求 用shell实现,把一个文本文档中只有一个数字的行给打印出来。 参考答案 #!/bin/bash while read line do n=`echo $line |sed 's/[^0-9]//g'|wc -L` if [ $n -eq 1 ] then echo $line fi do ...
分类:其他好文   时间:2021-02-27 13:00:32    阅读次数:0
layui时间选择控件时间限定
let begT = laydate.render({ elem: '#begintime', type: 'datetime', format: 'yyyy-MM-dd HH:mm', done: function (value, date, endDate) { endT.config.min ...
分类:其他好文   时间:2021-02-22 12:26:53    阅读次数:0
2020 BIT冬训-二分三分快速幂矩阵 L - Decode the Strings HDU - 2371
Problem Description Bruce Force has had an interesting idea how to encode strings. The following is the description of how the encoding is done:Let x1 ...
分类:其他好文   时间:2021-02-19 13:18:41    阅读次数:0
Markdone - 1
Markdone 学习 标题 “#” 空格 后可以回车直接成为标题,几个“#”就代表几级标题,最多六级。 字体 两边加**, 可以加粗。 两边加*, 可以斜体。 两边加***, 可以加粗斜体。 两边加~,出现中间删除线。 引用 引用效果示意。 前面加 “>” 即可。 分割线 “ ” “***” 图片 ...
分类:其他好文   时间:2021-02-18 13:40:43    阅读次数:0
go context理解
### go context理解 #### context包 总结起来就一句话:一个接口,四个实现,六个方法 (1.)一个接口 type Context interface { Deadline() (deadline time.Time, ok bool) Done() ←chan struct ...
分类:其他好文   时间:2021-02-10 12:51:22    阅读次数:0
shell 解压当前目录所有zip文件
code macname@MacdeMacBook-Pro zipfiles % cat test.sh #!/bin/bash ZIP_FILES=$(ls *.zip) for zip_file in $ZIP_FILES; do unzip $zip_file done macname@Mac ...
分类:系统相关   时间:2021-02-01 11:49:14    阅读次数:0
2584条   上一页 1 2 3 4 5 ... 259 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!