码迷,mamicode.com
首页 >  
搜索关键字:copy file    ( 62933个结果
ntfs_file system
centos linux 对ntfs的支持,需要第三方软件源epel 使用阿里源 ,根据help进行配置 #wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo #yum install ntfs- ...
分类:Web程序   时间:2021-01-01 11:44:57    阅读次数:0
更新:python 作为服务端 java调用
python: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #@Time : 2020/5/3 18:44 4 #@Author: hdq 5 #@File : server.py 6 #将接口以服务器的方式暴露以提供给Java调用缩短调用时 ...
分类:编程语言   时间:2020-12-31 12:44:23    阅读次数:0
Linux内外部命令判断及命令执行流程
一、命令分为: 内部命令:shell自带的命令 外部命令:不是shell自带的命令 二、如何查看是否为内外部命令 type eg:type cd 当看到builtin说明它是一个内部命令 eg: type ifconfig 没有builtin说明它是一个外部命令 三、file命令:查看文件类型(li ...
分类:系统相关   时间:2020-12-31 12:41:45    阅读次数:0
Gedit配置
gedit自动编译: #!/bin/sh name=$GEDIT_CURRENT_DOCUMENT_NAME dir=$GEDIT_CURRENT_DOCUMENT_DIR pre=${name%.*} g++ $dir/$name -o $pre -std=c++11 -w if test $? ...
分类:其他好文   时间:2020-12-31 12:41:14    阅读次数:0
IDEA创建Java工程、Web工程、Maven工程
一、IDEA创建java工程 File->New->Project Java->选择对应的JDK->Next 填写项目名称、指定工程路径->Finish 然后在src下右键新建包结构 新建Java Class文件 运行程序 设置class文件编译路径 二、创建Web工程 (1)先创建Java工程 ( ...
分类:编程语言   时间:2020-12-31 12:32:14    阅读次数:0
[Tools] Using Webpack require.context to conditionally load file
require.context: https://webpack.js.org/guides/dependency-management/#requirecontext require.context(directory, useSubdirectories = true, regExp = /^\ ...
分类:Web程序   时间:2020-12-31 12:11:57    阅读次数:0
阿里云Centos7 安装mysql5.7 报错:./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
在阿里云服务器Centos7中安装mysql5.7,解压数据库初始化后,报错 ./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or di ...
分类:数据库   时间:2020-12-31 11:58:26    阅读次数:0
删除二层目录下的文件及文件夹
import os import time import shutil def del_file(filepath): """ 删除某一目录下的所有文件或文件夹 """ del_list = os.listdir(filepath) for f in del_list: file_path = os ...
分类:其他好文   时间:2020-12-31 11:42:16    阅读次数:0
asp.net core 5,0 项目中Add-Migration 执行报错 (可能不小心删掉了,安装后真的可以用了!!!)
错误提示: Add-Migration : The term 'Add-Migration' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli ...
分类:Web程序   时间:2020-12-30 11:32:15    阅读次数:0
saltstack3-状态管理-yum安装软件
状态管理-salt安装apache 编辑主配置文件,定义几个环境。 vim /etc/salt/master file_roots: base: - /srv/salt/base dev: - /srv/salt/dev test: - /srv/salt/test prod: - /srv/sal ...
分类:其他好文   时间:2020-12-30 11:27:09    阅读次数:0
62933条   上一页 1 ... 82 83 84 85 86 ... 6294 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!