web-dev-qa-db-ja.com

PowerShellを使用して出力をクリップボードにパイプする

PowerShellでは、コマンドの出力をクリップボードにどのようにパイプしますか。

  • それでもデータをより多くのプロセスにパイプすることができる
  • clip.exeなどの外部アプリケーションに依存しない
  • フィルターとして機能するため、コマンドラインに出力がすぐに表示されます

編集:2015年5月14日

3年後、私は自分のClipboardModuleを共有するつもりだと思いました(許可されているといいのですが):

Add-Type -AssemblyName System.Windows.Forms

Function Get-Clipboard {
    param([switch]$SplitLines)

    $text = [Windows.Forms.Clipboard]::GetText();

    if ($SplitLines) {
        $xs = $text -split [Environment]::NewLine
        if ($xs.Length -gt 1 -and -not($xs[-1])) {
            $xs[0..($xs.Length - 2)]
        } else {
            $xs
        }
    } else {
        $text
    }
}

function Set-Clipboard {
    $in = @($input)

    $out = 
        if ($in.Length -eq 1 -and $in[0] -is [string]) { $in[0] }
        else { $in | Out-String }

    if ($out) {
        [Windows.Forms.Clipboard]::SetText($out);
    } else {
        # input is nothing, therefore clear the clipboard
        [Windows.Forms.Clipboard]::Clear();
    }
}


function GetSet-Clipboard {
    param([switch]$SplitLines, [Parameter(ValueFromPipeLine=$true)]$ObjectSet)

    if ($input) {
        $ObjectSet = $input;
    }

    if ($ObjectSet) {
        $ObjectSet | Set-Clipboard
    } else {
        Get-Clipboard -SplitLines:$SplitLines
    }
}

Set-Alias cb GetSet-Clipboard

Export-ModuleMember -Function *-* -Alias *

私は通常、cbエイリアス(GetSet-Clipboard用)を使用します。これは、クリップボードを取得または設定できる2つの方法だからです。

cb                # gets the contents of the clipboard
"john" | cb       # sets the clipboard to "john"
cb -s             # gets the clipboard and splits it into lines
22
Tahir Hassan

WMF 5.0を使用している場合、PowerShellには2つの新しいコマンドレットが含まれています。

get-clipboardおよびset-clipboard

19
Mark Minasi

編集:解決策については、代わりに質問をご覧ください。

これが私の解決策です:

Add-Type -AssemblyName 'System.Windows.Forms'

filter Set-Clipboard {
    begin {
        $cp = @()
    }
    process {
        $_ | Tee-Object -Variable 'cp0'
        $cp = $cp + @($cp0);
    }
    end {
        $str = ($cp | Out-String).ToString();

        [Windows.Forms.Clipboard]::Clear();

        if ( ($str -ne $null) -and ($str -ne '') ) {
            [Windows.Forms.Clipboard]::SetText( $str )
        }

        $cp = @()
    }
}

これは、配列$cp内のすべてのオブジェクトを収集します。 Tee-Object を使用して、現在の要素$_を次のプロセスと配列$cpの両方にリダイレクトします。最後に、プロセスが終了したら、クリップボードのテキストを設定します。

次のように使用しました。

dir -Recurse | Set-Clipboard | Select 'Name'

そしてそれはうまくいくようです。

代わりに関数を使用するには:

function Set-Clipboard-Func {
    $str = $input | Out-String

    [Windows.Forms.Clipboard]::Clear();

    if ( ($str -ne $null) -and ($str -ne '') ) {
        [Windows.Forms.Clipboard]::SetText( $str )
    }
}
3
Tahir Hassan

Powershellバージョン6.1はこのコマンドレットを削除したため、組み込みではなくなりました。

代わりに、 ClipboardTextパッケージ をインストールする必要があります。 Powershellのコンソールタイプ:

Install-Module -Name ClipboardText

それからあなたは使うことができます:

 Set-ClipboardText "hello clipboard"
 Get-ClipboardText

これはgithubの問題です PowershellのメンテナがClipboardTextパッケージを使用するようにリダイレクトします。

2
Donal Mee