【get-help】
檢視 get-command 的 totalcount 引數說明:
ps> get-help get-command -parameter totalcount
檢視 get-command cmdlet 的所有引數:
ps> get-help get-command -parameter *
【out-host】-paging 命令用以強行逐頁顯示其他命令的輸出,則該輸出的外觀將與螢幕上顯示的正常文字一樣,分為各頁顯示。
ps> get-childitem -path c:\windows\system32 | out-host -paging
(*more是乙個稱為 out-host -paging 的函式,以上語句可改寫為:
ps> get-childitem -path c:\windows\system32 | more)
【out-file】將檔案內容的格式設定為與控制台輸出的格式一樣。
ps> get-command | out-file -filepath c:\temp\output.txt
【返回當天是年中的第幾周】
get-date -uformat %v
【返回當天是年中的第幾天】
get-date -uformat %j
【篩選出含有指定字串的文字檔案】
select-string c:\scripts\*.txt -pattern "hey, scripting guy!"
* 更酷的寫法:
select-string c:\scripts\*.txt -pattern "hey, scripting guy!" | format-list
【寫入/讀取文字內容】
add-content c:\file.txt "hello"
get-content c:\file.txt
【尋找目錄樹中所有的 空資料夾】
get-childitem d:\folders –recurse | where-object | where-object | select-object fullname
(* 假設目錄folders下有一空資料夾emptyfolder,則也認為folder和emptyfolder都是空的)
【獲取工作列顯示的視窗列表(對資源管理器開啟的視窗無效)】
ps | ? | select mainwindowtitle, name | format-list
scons 實用說明(一)
還在為寫乙個makefile發愁嗎?還在為難記的make引數而苦惱嗎?有了scons一切都邊的簡單了。最近研究了下scons,發現和makefile相比,soncs編譯c和c 程式真的太方便了。搞程式什麼做好,當然是簡單實用最好下面大家就一起感受下簡單的scons吧。1 使用scons編譯程式 在程...
Docker 實用記錄 一
2020年初,學docker,後來專案變化也一直擱淺了docker,這個事情,最近又需要用到docker,但已經記不清docker如何將硬碟網路映 run 一下都變得陌生。所以這次還是記錄一下吧。畢竟每次重複太低效率了。幾種設定親測無效 因為我是intel 內網,不一定真的無效 environmen...
python實用技巧(一)
python實用技巧 一 python實用技巧 二 python實用技巧 三 python實用技巧 四 已知x是多維陣列型別,則 在作業系統 windows或者linux 命令列介面下 python v python 3.4 3 anaconda 2.3.0 32 bit 如果我們已經進行pytho...