36

このサーバーにはまともなテキスト エディタがありませんが、特定のファイルの 10 行目で何がエラーを引き起こしているのかを調べる必要があります。私はPowerShellを持っていますが...

4

7 に答える 7

34

select を使用するのと同じくらい簡単です。

Get-Content file.txt | Select -Index (line - 1)

たとえば、5行目を取得するには

Get-Content file.txt | Select -Index 4

または、次を使用できます。

(Get-Content file.txt)[4]
于 2013-02-07T19:52:51.643 に答える
22

これにより、myfile.txt の 10 行目が表示されます。

get-content myfile.txt | select -first 1 -skip 9

-firstとは両方とも-skipオプションのパラメーターであり-context、 、 または-lastは同様の状況で役立つ場合があります。

于 2013-02-07T19:44:36.450 に答える
9

コマンドレット-TotalCountのパラメーターを使用して最初の行を読み取り、次に使用してth 行のみを返すことができます。Get-ContentnSelect-Objectn

Get-Content file.txt -TotalCount 9 | Select-Object -Last 1;

@CB からのコメントによると、nファイル全体ではなく th 行までを読み取るだけで、パフォーマンスが向上するはずです。-Firstエイリアスまたは-Headを代わりに使用できることに注意してください-TotalCount

于 2013-02-07T20:16:54.660 に答える
8

.NET のSystem.IOクラスを直接使用する関数を次に示します。

function GetLineAt([String] $path, [Int32] $index)
{
    [System.IO.FileMode] $mode = [System.IO.FileMode]::Open;
    [System.IO.FileAccess] $access = [System.IO.FileAccess]::Read;
    [System.IO.FileShare] $share = [System.IO.FileShare]::Read;
    [Int32] $bufferSize = 16 * 1024;
    [System.IO.FileOptions] $options = [System.IO.FileOptions]::SequentialScan;
    [System.Text.Encoding] $defaultEncoding = [System.Text.Encoding]::UTF8;
    # FileStream(String, FileMode, FileAccess, FileShare, Int32, FileOptions) constructor
    # http://msdn.microsoft.com/library/d0y914c5.aspx
    [System.IO.FileStream] $input = New-Object `
        -TypeName 'System.IO.FileStream' `
        -ArgumentList ($path, $mode, $access, $share, $bufferSize, $options);
    # StreamReader(Stream, Encoding, Boolean, Int32) constructor
    # http://msdn.microsoft.com/library/ms143458.aspx
    [System.IO.StreamReader] $reader = New-Object `
        -TypeName 'System.IO.StreamReader' `
        -ArgumentList ($input, $defaultEncoding, $true, $bufferSize);
    [String] $line = $null;
    [Int32] $currentIndex = 0;

    try
    {
        while (($line = $reader.ReadLine()) -ne $null)
        {
            if ($currentIndex++ -eq $index)
            {
                return $line;
            }
        }
    }
    finally
    {
        # Close $reader and $input
        $reader.Close();
    }

    # There are less than ($index + 1) lines in the file
    return $null;
}

GetLineAt 'file.txt' 9;

変数を微調整すると、$bufferSizeパフォーマンスに影響する場合があります。デフォルトのバッファ サイズを使用し、最適化のヒントを提供しない、より簡潔なバージョンは次のようになります。

function GetLineAt([String] $path, [Int32] $index)
{
    # StreamReader(String, Boolean) constructor
    # http://msdn.microsoft.com/library/9y86s1a9.aspx
    [System.IO.StreamReader] $reader = New-Object `
        -TypeName 'System.IO.StreamReader' `
        -ArgumentList ($path, $true);
    [String] $line = $null;
    [Int32] $currentIndex = 0;

    try
    {
        while (($line = $reader.ReadLine()) -ne $null)
        {
            if ($currentIndex++ -eq $index)
            {
                return $line;
            }
        }
    }
    finally
    {
        $reader.Close();
    }

    # There are less than ($index + 1) lines in the file
    return $null;
}

GetLineAt 'file.txt' 9;
于 2013-02-08T16:11:58.787 に答える
7

楽しみのために、ここにいくつかのテストがあります:

# Added this for @Graimer's request ;) (not same computer, but one with HD little more
# performant...)
> measure-command { Get-Content ita\ita.txt -TotalCount 260000 | Select-Object -Last 1 }


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 28
Milliseconds      : 893
Ticks             : 288932649
TotalDays         : 0,000334412788194444
TotalHours        : 0,00802590691666667
TotalMinutes      : 0,481554415
TotalSeconds      : 28,8932649
TotalMilliseconds : 28893,2649


> measure-command { (gc "c:\ps\ita\ita.txt")[260000] }


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 9
Milliseconds      : 257
Ticks             : 92572893
TotalDays         : 0,000107144552083333
TotalHours        : 0,00257146925
TotalMinutes      : 0,154288155
TotalSeconds      : 9,2572893
TotalMilliseconds : 9257,2893


> measure-command { ([System.IO.File]::ReadAllLines("c:\ps\ita\ita.txt"))[260000] }


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 0
Milliseconds      : 234
Ticks             : 2348059
TotalDays         : 2,71766087962963E-06
TotalHours        : 6,52238611111111E-05
TotalMinutes      : 0,00391343166666667
TotalSeconds      : 0,2348059
TotalMilliseconds : 234,8059



> measure-command {get-content .\ita\ita.txt | select -index 260000}


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 36
Milliseconds      : 591
Ticks             : 365912596
TotalDays         : 0,000423509949074074
TotalHours        : 0,0101642387777778
TotalMinutes      : 0,609854326666667
TotalSeconds      : 36,5912596
TotalMilliseconds : 36591,2596

勝者は :([System.IO.File]::ReadAllLines( path ))[index]

于 2013-02-07T20:28:56.587 に答える
3

メモリ消費を減らして検索を高速化するには、Get-Content コマンドレット ( https://technet.microsoft.com/ru-ru/library/hh849787.aspx ) の -ReadCount オプションを使用できます。

これにより、大きなファイルを扱うときに時間を節約できます。

次に例を示します。

$n = 60699010
$src = 'hugefile.csv'
$batch = 100
$timer = [Diagnostics.Stopwatch]::StartNew()

$count = 0
Get-Content $src -ReadCount $batch -TotalCount $n | %  { 
    $count += $_.Length
    if ($count -ge $n ) {
        $_[($n - $count + $_.Length - 1)]
    }
}

$timer.Stop()
$timer.Elapsed

$n 行目と経過時間を出力します。

于 2016-02-05T14:59:20.357 に答える