码迷,mamicode.com
首页 >  
搜索关键字:linux shell while read line    ( 244703个结果
Linux下安装Nginx
作者:Grey 原文地址:Linux下安装Nginx 版本 Nginx:1.20.1 操作系统:CentOS 7 安装必要工具和依赖 yum -y install wget gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-dev ...
分类:系统相关   时间:2021-06-03 18:15:31    阅读次数:0
linux CentOS 权限问题修复(chmod 777 -R 或者chmod 755 -R问题修复)
我个人曾经有一次经历: 就是在修改文件夹权限的时候,本来该执行: #chmod 777 -R ./ 结果我漏掉了那个".";执行的命令是chmod 777 -R /。 这个命令一定慎用,否则容易酿成大错。 结果就出大问题了。系统崩溃。 解决办法: 到正常的文件系统中获取一下权限列表。 #getfac ...
分类:系统相关   时间:2021-06-03 18:14:24    阅读次数:0
linux下python3.6.7安装
linux下python3.6.7安装yum -y install gcc yum -y install wget openssl openssl-develtar xvf Python-3.6.7.tgzcd Python-3.6.7/ ./configure --prefix=/usr/loca ...
分类:编程语言   时间:2021-06-03 18:13:34    阅读次数:0
MongoDB(15)- 查询操作里面的游标 cursor
db.collection.find() 方法里面的游标 该方法最后会返回一个 cursor 正常情况下,访问文档必须迭代游标 重点事项 当调用 find() 函数时,Shell 并不立即查询数据库,而是等真正开始获取结果时才发送查询请求 游标对象的每个方法几乎都会返回游标对象本身,这样可以方便进行 ...
分类:数据库   时间:2021-06-03 18:11:17    阅读次数:0
0603 每日文献阅读 打卡
Read Data:0603 Publication: CVPR 2021 Title: Instance Localization for Self-supervised Detection Pretraining Participants: Ceyuan Yangy, Zhirong Wu, B ...
分类:其他好文   时间:2021-06-03 18:09:43    阅读次数:0
tensorrt 中的一些基本概念 Logger, Context, Engine, Builder, Network, Parser 知识梳理
先来看一下官方文档的api简介: TensorRT provides a C++ implementation on all supported platforms, and a Python implementation on Linux. Python is not currently supp ...
分类:Web程序   时间:2021-06-03 18:07:29    阅读次数:0
Java已知图片路径下载图片到本地
public static void main(String[] args) { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; int size = 0; ...
分类:编程语言   时间:2021-06-03 18:04:25    阅读次数:0
linux环境搭建elasticsearch
1 下载解压elasticsearch tar -zxvf elasticsearch-7.6.1-linux-x86_64.tar.gz 2)修改config/elasticsearch.yml vim config/elasticsearch.yml cluster.name: my-appli ...
分类:系统相关   时间:2021-06-03 18:02:47    阅读次数:0
火狐mac windows 不同步
http://mozilla.com.cn/thread-352987-1-1.html http://mozilla.com.cn/thread-330960-1-1.html http://mozilla.com.cn/forum.php?mod=viewthread&tid=330960&pa ...
分类:Windows程序   时间:2021-06-03 17:59:15    阅读次数:0
Tkinter canvas-01
常用参数和函数 fill = 'xxx' # 填充xxx颜色 width = 'xxx' # 设置宽度或边框宽度 outline = 'orange' # 设置边框的颜色 canvas.itemcget(name, 'xxx') # 获取组件name的xxx属性 canvas.coords(name ...
分类:其他好文   时间:2021-06-03 17:57:11    阅读次数:0
244703条   上一页 1 ... 53 54 55 56 57 ... 24471 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!