曾经为了让所有服务不允许随便访问公网,要访问公网则必须走代理,于是就需要一个非常NB的代理,能应对各种复杂的需 …
分类存档:默认分类
h3c 交换机之dns proxy
h3c s5560可以开启dns proxy功能,该功能不仅proxy,还cache查询的结果,而且cache …
Docker 使用 Ceph RBD Volume — » Kumu’s Blog
http://blog.opskumu.com/rbd-docker-plugin.html
csv和xml在powershell中的使用
bash中很少使用csv,尤其很少使用xml,因为他们对于常用的awk等文本处理工具并不友好,当然,应该有专门 …
Powershell强类型数组 – PowerShell 中文博客
http://www.pstips.net/powershell-strong-typed-array.htm …
Powershell 在函数中捕获异常 – PowerShell 中文博客
http://www.pstips.net/powershell-trap-error-in-function …
Powershell Switch 条件 – PowerShell 中文博客
http://www.pstips.net/powershell-switch-condition.html
Powershell指定函数的返回值 – PowerShell 中文博客
http://www.pstips.net/powershell-specify-return-value-f …
powershell之for循环
1 2 3 4 5 6 7 8 |
$alphabet = @() for ([byte]$c = [char]'A'; $c -le [char]'Z'; $c++) { $alphabet += [char]$c } [String]::Join(", ", $alphabet) |
[crayon-686ddd05922c85 …
powershell 之 a-z
字符之 0~9:
1 2 3 4 5 6 7 8 9 10 11 |
0x30..0x39|foreach {[char]$_} 0 1 2 3 4 5 6 7 8 9 |
数字之0~9: [cray …