码迷,mamicode.com
首页 >  
搜索关键字:find a temporary directory    ( 30906个结果
Linux好用的一些命令组合
Linux命令千千万,总有几个特别的好用。 遇到一个就增加一个。 理解Linux的设计哲学:一个程序只干很少的一部分事情。 今天先来学习第一个。 Linux批量删除文件 find ./ -name *.md | xargs rm -rf 批量删除带空格的文件 find ./ -name *.md - ...
分类:系统相关   时间:2021-06-02 20:56:09    阅读次数:0
执行npx webpack-dev-server报错: Cannot find module 'webpack-cli/bin/config-yargs'
1.问题描述 已经执行了npm i webpack-dev-server -D完成安装,可是在运行命令npx webpack-dev-server时还是报错,如图所示: 2.问题分析 package.json文件中"webpack-cli"的版本为4开头,而 "webpack-dev-server" ...
分类:Web程序   时间:2021-06-02 20:23:13    阅读次数:0
01x2 常用Dos命令
01x21 打开cmd的方式 1、win+r 2、任意文件夹 shift+右击 打开powershell 3、资源管理器地址栏全选,输入cmd,回车进入当前路径的cmd 01x22 常用Dos命令 #切换盘符:D: #查看当前路径所有目录:dir#切换目录:cd change directory#清 ...
分类:其他好文   时间:2021-06-02 19:32:38    阅读次数:0
Sharding-JDBC自定义复合分片算法
一、背景 最近在看 Sharding-JDBC方面的内容,此处简单记录一下使用Sharding-JDBC中的复合分片键来实现分表的方法。 二、需求 假设我们有一张订单表customer_order,为了防止单表数据量太大,需要进行分表操作。 此处需要分为3个表 customer_order_0、cu ...
分类:数据库   时间:2021-06-02 15:43:14    阅读次数:0
/etc/init.d/functions: No such file or directory报错问题
docker-centos7运行systemctl status jenkins, 出现/etc/rc.d/init.d/jenkins: line 59: /etc/init.d/functions: No such file or directory错误, yum安装即可 yum install ...
分类:其他好文   时间:2021-06-02 15:14:11    阅读次数:0
fastapi 挂载静态文件夹
from fastapi.staticfiles import StaticFiles app.mount(path='/coronavirus/',app=StaticFiles(directory=' ./coronavirus/static', name='static')) ...
分类:Windows程序   时间:2021-06-02 15:01:20    阅读次数:0
How Long Does It Take
How Long Does It Take Given the relations of all the activities of a project, you are supposed to find the earliest completion time of the project. In ...
分类:其他好文   时间:2021-06-02 14:53:07    阅读次数:0
查找文件与cron计划任务
查找文件 ? 根据预设的条件递归查找对应的文件 find [目录] [条件1] [-a|-o] [条件2] ... -type 类型(f文件、d目录、l快捷方式) -name "文档名称" -size +|-文件大小(k、M、G) -user 用户名 -iname根据名称查找,忽略大小写 -maxd ...
分类:其他好文   时间:2021-06-02 14:26:29    阅读次数:0
Oracle datapump相关sql语句汇总
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:数据库   时间:2021-06-02 14:24:07    阅读次数:0
mysql的安装和主从配置
一、mysql的安装 1,安装环境:centos 7.4 ,MySQL安装包:mysql-8.0.19-1.el7.x86_64.rpm-bundle.tar ,两台服务器的IP分别为:192.168.112.129 ;192.168.112.130 分别安装下MySQL 2,解压MySQL的安装包 ...
分类:数据库   时间:2021-06-02 13:16:45    阅读次数:0
30906条   上一页 1 ... 5 6 7 8 9 ... 3091 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!