公告版位
星落的瞬間!放棄的後悔是永遠!

目前分類:powershell (3)

瀏覽方式: 標題列表 簡短摘要

dir "*.exe" | % {."$_"}


讓地獄深紅的天亮 發表在 痞客邦 留言(0) 人氣()

# 只能轉與系統同編碼的ansi
function tounicode($orginFile = $(throw "input file required"))
{
 $data = get-content $orginFile
 set-content -value $data $orginFile -encoding utf8
}

# 可以自定來源編碼
function tounicode($orginFile = $(throw "input file required"), $coding = 'Shift-JIS')
{
 #$data = get-content $orginFile

讓地獄深紅的天亮 發表在 痞客邦 留言(0) 人氣()

dir -r | % {if ($_ -like "*.obj") {del $_.FullName} }
解釋:
dir 列出目錄
-r 遞迴進入子目錄
| 把資料傳給...
% 就是foreach
{ 要做的事 }
if 判斷
$_ 傳來的參數簡寫
-like 字串比較

讓地獄深紅的天亮 發表在 痞客邦 留言(0) 人氣()