制御 †
コマンド †
Select-Object †
ファイル操作 †
Tips †
tail †
> Get-Content C:\var\log\nlog-own-2017-11-27.log -wait -tail 10 -Encoding UTF8
touch †
grep †
- 「ファイル名:行番号」を出力しない
- これが一番良さそう
cat [ファイル名] | sls [検索文字列] | Out-String -Width 4096
- select Line はイマイチ
select-string [検索文字列] | select Line | Out-String -Width 4096
select-string [検索文字列] | select Line | Format-Table -Property * -AutoSize | Out-String -Width 4096
wc -l †
(Get-Content [ファイル] | Measure-Object).Count
cut †
uniq †
which †
C# †
メール送信 †
SQL Server †
WCF †