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-690b2e04627ef1 …
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 …
UDP traffic through SSH tunnel – Super User
https://superuser.com/questions/53103/udp-traffic-throu …
No TCP-over-TCP, which is a very bad idea
reactormonk on September 14, 2013 at 4:49 am said: No T …
wordpress架构升级
PHP7发布已经有一年了,但是我的博客依然还跑在apache + php-5.3上呢,当时我的yum源里面之后 …