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-679bcb65440563 …
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 …
How To Route Web Traffic Securely Without a VPN Using a SOCKS Tunnel | DigitalOcean
https://www.digitalocean.com/community/tutorials/how-to …
继续阅读“How To Route Web Traffic Securely Without a VPN Using a SOCKS Tunnel | DigitalOcean”
How to access ssh terminal in web browser on Linux – Xmodulo
http://xmodulo.com/access-ssh-terminal-web-browser-linu …
继续阅读“How to access ssh terminal in web browser on Linux – Xmodulo”
How to run a command on multiple servers at once – Xmodulo
http://xmodulo.com/how-to-run-command-on-multiple-serve …
继续阅读“How to run a command on multiple servers at once – Xmodulo”
How to diff remote files over SSH – Xmodulo
http://xmodulo.com/how-to-diff-remote-files-over-ssh.ht …