2013年5月24日
摘要: Sometimes it may be useful to display an IPv4 address bit by bit, for example, to compare it with a subnet mask. Here's another example of just how flexible PowerShell is because it only takes one line:$ipV4='192.168.12.33'-join ($ipV4.Split('.') |ForEach-Object {[System.Convert] 阅读全文
posted @ 2013-05-24 11:44 PatrickWong 阅读(299) 评论(0) 推荐(0) 编辑