码迷,mamicode.com
首页 >  
搜索关键字:shell sed awk    ( 39625个结果
---Python switch 代码处理方法!
Python是没有swithch语句, 这点还是对于我们这些整Java/C/Shell/... 人都是很不习惯, 你得这样才行! #!/usr/bin/env python2 junk = "shoo2" def shoo_fun1(): print "hello ok1" def shoo_fun ...
分类:编程语言   时间:2021-02-08 12:09:39    阅读次数:0
.Net Core 项目部署在Linux下, 关闭Shell后项目会自动关闭的解决办法
.Net Core 项目部署在Linux下, 关闭Shell后项目会自动关闭的解决办法 1. 使用nohup命令即可 nohup dotnet xxxx.dll ...
分类:Web程序   时间:2021-02-08 11:47:55    阅读次数:0
右键没有notepad++选项
右键没有notepad++选项 cmd→regedit 找到计算机\HKEY_CLASSES_ROOT*\shell 右键shell文件夹,新建→项,命名为command 双击右侧(默认)文件 notepad安装路径+**notepad.exe"%1"** 确定保存,完成 ...
分类:其他好文   时间:2021-02-08 11:46:05    阅读次数:0
java8--lambda
LinkedHashMap<String,User> result = //方法一 map.entrySet().stream() //根据User中某个字段进行排序 .sorted(Map.Entry.comparingByValue( //若为Map<String,String>,则不需要下面这 ...
分类:编程语言   时间:2021-02-06 11:44:18    阅读次数:0
linux的目录结构
linux目录结构图 1、根目录表示方式:/ 2、根目录下常见目录: -/bin:即binary,存放二进制文件、可执行程序和shell命令等; -/dev:即device,linux的设备文件,如硬盘、显卡、显示器等; -/lib:linux运行的时候需要加载的一些动态库 -/mnt:用户收到挂载 ...
分类:系统相关   时间:2021-02-06 11:42:00    阅读次数:0
mysql数据库5.7版本部署
1.安装前准备: (mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz 二进制安装包 + centos7.4系统,有yum环境,可以在www.mysql.com官网下载) 2.开始安装 shell> yum install libaio shell> groupad ...
分类:数据库   时间:2021-02-05 10:34:24    阅读次数:0
Mybatis plus 多表联查字段名重复报错 Column ‘id‘ in where clause is ambiguous
一、报错信息 Caused by: Column 'xxxx' in where clause is ambiguous 二、报错原因 表 person 和 表 class 都有字段 id 和 name ,所以要给它们增加别名来进行区分。 PersonVOMapper.java public int ...
分类:其他好文   时间:2021-02-04 12:11:49    阅读次数:0
【背包九讲专题】完全背包
暴力朴素无优化写法: #include<bits/stdc++.h> using namespace std; const int maxn=1e3+5; int dp[maxn][maxn]; int v[maxn],w[maxn]; int main(){ int n,m;scanf("%d%d ...
分类:其他好文   时间:2021-02-04 12:02:33    阅读次数:0
Linux reboot全过程
一、版本说明嵌入式Linux 下面的reboot命令看似简单,但出问题时定位起来发现别有洞天。下面就按在shell下执行reboot命令之后程序的执行过程进行解析。Busybox:1.23.2 ——制作跟文件系统,/sbin/reboot程序的由来Libc:2.6.1 ——标准C库Linux ker ...
分类:系统相关   时间:2021-02-04 11:43:18    阅读次数:0
几种语言的比较(WIP)
各种feature的实现 执行shell 处理时间 处理参数 处理文件 logging test 多线程、进程,并发 语言 python groovy scala java C++ C shell go 执行shell, check output groovy a= "ls".execute(); ...
分类:编程语言   时间:2021-02-03 10:42:48    阅读次数:0
39625条   上一页 1 ... 35 36 37 38 39 ... 3963 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!