using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using org.in2bits.MyXls; namespace... ...
分类:
其他好文 时间:
2019-09-23 22:37:14
阅读次数:
116
安装之前,最好把防火墙关闭,防止因为防火墙导致各个ip之间通讯受阻 脚本安装redis步骤1,ps -ef|grep redispkill rediscd /usr/local/rm -rf rediscd src/rm -rf redis-4.0.9tar -zxvf redis-4.0.9-v1 ...
分类:
其他好文 时间:
2019-09-23 10:11:54
阅读次数:
93
<#@ template debug="false" hostspecific="false" language="C#" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.Linq" #> <#@ import n ...
分类:
其他好文 时间:
2019-09-23 10:03:04
阅读次数:
106
Limiting Data —- Take() and Skip() 前面讲了 筛选 和 排序,现在讲 选取皇帝选妃,层层选拔,最后留几个,让他过目,他选一个或者几个作为妃子,大概是这么个意思Take(X) 是选取X个 Skip(Y) 是跳过前Y个 Select 选取子集 前面说的Where Ord ...
go语言中字符串的分割分以下几种: 1、根据空格键进行分割 方法:strings.Fields(s string) []string s:要分割的字符串 返回结果为[]string 例: s:=" ab cd ef gh ij kl " arr:=strings.Fields(s) fmt.Prin ...
分类:
编程语言 时间:
2019-09-21 18:46:27
阅读次数:
95
https://www.cnblogs.com/chenwolong/p/7531955.html EF使用AsNoTracking(),无跟踪查询技术(查询出来的数据不可以修改,如果你做了修改,你会发现修改并不成功) ...
proc.num[name,user,state,command] user 指定启动该进程的用户 state 进程状态,可能是僵尸进程,正在执行的进程,正在监听的进程 command 模糊匹配的,在启动的命令行参数中有的就能被识别到 其实他执行的linux命令就是 ps ef proc.num[, ...
分类:
其他好文 时间:
2019-09-20 22:46:35
阅读次数:
89
首先创建一个类,我命名为IniFiles。需要引用命名空间using System.Runtime.InteropServices,System.IO; using System;using System.Collections.Generic;using System.Linq;using Sys ...
端口查看 netstat -anplt | more 查看进程: ps -ef ps aux ps aux | grep pid 定时任务查看 crontab 查看文件 cat file全显示 head -5 file //显示前5行 tail -5 file //显示后5行 t00ls大佬分享的技... ...
分类:
系统相关 时间:
2019-09-19 01:28:04
阅读次数:
210
PID=$(ps -ef | grep eladmin-system-2.0.jar | grep -v grep | awk '{ print $2 }')if [ -z "$PID" ]thenecho Application is already stoppedelseecho kill $P ...
分类:
其他好文 时间:
2019-09-18 19:14:44
阅读次数:
87