摘要:
实体类: public class ApiActionDescriptorModel:ICloneable { public string ActionName { get; set; } public string ControllerName { get; set; } public ApiPa 阅读全文
摘要:
在”a b c d”的b后面插入3个字段e f g echo a b c d|awk '{$3="e f g "$3}1' 获取ipv4地址: 方法一: ifconfig | awk '/inet / && !($2 ~/^127/){print $2}' 方法二: ifconfig | awk ' 阅读全文
摘要:
private List<string> IpOrderBy(List<string> ips) { List<string> ipList = new List<string>(); if (ips != null && ips.Count > 0) { for (int i = 0; i < i 阅读全文
摘要:
var reg = /[^\\\/]*[\\\/]+/g; //匹配文件的名称和后缀的正则表达式 var name = $(this).val().replace(reg, ''); var postfix = /\.[^\.]+/.exec(name);//获取文件的后缀 var text =na 阅读全文
摘要:
特殊符号: {} 集合 ${}变量引用 #ping ip ip=10.10.19.10 i=1 while [ $i -le 5 ] do ping -c1 $ip &>dev/null if [ $? -eq 0 ];then echo "$ip is up.." fi let i=i+1 don 阅读全文