#author("2021-06-14T23:59:34+00:00","default:admin","admin")
#author("2021-11-15T04:15:31+00:00","default:admin","admin")
-[[Test-Pathコマンドレットを使用してファイル・フォルダの存在確認を行う方法:https://win.just4fun.biz/?PowerShell/%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%BB%E3%83%95%E3%82%A9%E3%83%AB%E3%83%80%E3%81%AE%E5%AD%98%E5%9C%A8%E3%83%81%E3%82%A7%E3%83%83%E3%82%AF%E3%83%BBTest-Path]]
-[[【PowerShell】ファイルの作成日時や更新日時を取得する:https://hosopro.blogspot.com/2016/11/powershell-get-itemproperty.html]]

-[[PowerShellでテキストファイルを連結する方法:https://win.just4fun.biz/?PowerShell/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%82%92%E9%80%A3%E7%B5%90%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95]]
-[[PowerShell を使ってテキストファイル読み込み/書きこみ:https://qiita.com/sukakako/items/ede96f6227f010a0f328]]
-[[ファイルへの上書きと追記方法・Set-Content,Add-Content:https://win.just4fun.biz/?PowerShell/%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%81%B8%E3%81%AE%E4%B8%8A%E6%9B%B8%E3%81%8D%E3%81%A8%E8%BF%BD%E8%A8%98%E6%96%B9%E6%B3%95%E3%83%BBSet-Content%2CAdd-Content#wfc2b43e]]

*バイナリファイル [#mb6b599c]
**Format-Hex [#u8b0e210]
-[[PowerShellのFormat-Hexコマンドレットでバイナリファイルを16進ダンプする:https://qiita.com/yapg57kon/items/9f09f75b5053e3767f1e]]
 Format-Hex [バイナリファイル]

**cat [#see60f88]
-[[PowerShell(バイナリファイル読み込み):https://life-is-command.com/powershell-10/]]
-[[PowerShell(バイナリ書き込み):https://life-is-command.com/powershell-set-content/]]
-[[【PowerShell】ファイルを読み込み16進数でバイナリ表示する:https://hosopro.blogspot.com/2017/11/powershell-convert-to-hex.html]]

-バイナリファイルの内容を16進数で出力
 cat [バイナリファイル] -encoding byte | %{$s=""}{$s+="{0:x2} " -f $_}{echo $s}

*隠しファイル [#w35eda1c]
-[[隠しファイル(Hidden属性)の操作:https://yanor.net/wiki/?PowerShell/%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E6%93%8D%E4%BD%9C/%E9%9A%A0%E3%81%97%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%28Hidden%E5%B1%9E%E6%80%A7%29%E3%81%AE%E6%93%8D%E4%BD%9C]]

*Tips [#e7db7d7d]
**文字列一括置換 [#q9427157]
-[[【Powershell】ファイル内の文字列を置換して上書きする方法:https://pig-log.com/powershell-replace-overwrite/]]

 Get-Content .\source.txt | ForEach-Object { $_ -replace "FROM_STRING","TO_STRING" } | Out-File .\result.txt -encoding utf8


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS