LoginSignup
0
0

More than 5 years have passed since last update.

今日のワンライナー

Last updated at Posted at 2017-12-26

自分用メモ


# Windowsサーバのディスク使用率を出力したパフォーマンスCSVファイル1ヶ月分(30ファイル)から、使用率のトップ3を取得する

gc [CSVを置いた場所]¥*.csv |sort |select-string "^`"20"|% {$b = "$_" -replace "`"","";$arr = new-object psobject -property @{date=($b).split(",")[0];time=($b).split(",")[1];use=($b).split(",")[2] -as [double]};$arr}|group use |sort name -desc|select -first 3

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0