1、整数比较:-eq 等于,如:if [ "$a" -eq "$b" ] 或 if [ $a -eq $b ]-ne 不等于,如:if [ "$a" -ne "$b" ]-gt 大于,如:if [ "$a" -gt "$b" ]-ge 大于等于,如:if [ "$a" -ge "$b" ]-lt 小 ...
分类:
系统相关 时间:
2021-01-16 11:43:35
阅读次数:
0
一:配置agent进入apache-skywalking-apm-bin\agent\config\agent.config #指定agent名称agent.service_name=${SW_AGENT_NAME:myAppName}#指定collector地址collector.backend_ ...
分类:
其他好文 时间:
2021-01-15 12:15:02
阅读次数:
0
在这篇文章中,我将介绍ASP.NET Core 数据保护系统:它是什么,为什么我们需要它,以及它如何工作。 为什么我们需要数据保护系统? 数据保护系统是ASP.NET Core使用的一组加密api。加密必须由不受信任的第三方处理的数据。 这方面的典型例子是身份验证cookie。cookie是在请求之 ...
分类:
Web程序 时间:
2021-01-15 12:14:04
阅读次数:
0
源码及汇编码 func.c源码 #include <stdio.h> int func(int a, int b) { a = 100; b = 200; printf("Hello%d\n", a); return 0; } int main(int argc, char *argv[]) { f ...
分类:
系统相关 时间:
2021-01-15 12:10:52
阅读次数:
0
FTP是个协议,用FTP开发的软件叫做FTP服务 vsftpd:很安全的FTP守护进程,是Linux常用的FTP服务 守护进程,不需要终端登录就可以后台开启的进程 使用过程: 1.装包, rpm -q vsftpd yum -y install vsftpd 二.设置主配置文件,/etc/vsftp ...
分类:
其他好文 时间:
2021-01-15 12:09:41
阅读次数:
0
Azure Active Directory (Azure AD) is Microsoft’s cloud-based identity and access management service, which helps your employees sign in and access res ...
第一种方法: $sudo su #echo "209.85.228.22 dl-ssl.google.com">> /etc/hosts #echo "209.85.228.22 dl.google.com">>/etc/hosts 查看添加成功 #cat /etc/hosts 第二种方法: # 修 ...
分类:
系统相关 时间:
2021-01-15 11:52:23
阅读次数:
0
在RabbitMQ中,Socket descriptors 是 File descriptors 的子集,它们也是一对此消彼长的关系。然而,它们的默认配额并不大,File descriptors 默认值为“1024”,而 Socket descriptors 的默认值也只有“829”,同时,File ...
分类:
系统相关 时间:
2021-01-15 11:43:06
阅读次数:
0
Pip修改源方法: 临时使用: 可以在使用pip的时候在后面加上-i参数,指定pip源 eg: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 永久修改: Linux: 修改 /root/.pip/pip.conf (没有 ...
分类:
其他好文 时间:
2021-01-15 11:42:48
阅读次数:
0
eval command:扫描执行两次command 例如: x="abc" y='$x' eval echo $y 结果输出: abc eval echo $y相当于执行了两次echo $y(更确切地说是执行了两次屏幕上显示在eval后面的命令) 第一次:执行的是echo $y输出变量y的值为'$ ...
分类:
系统相关 时间:
2021-01-14 11:26:41
阅读次数:
0