1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerShell v7.4でリダイレクトの動作が改善されていた

Posted at

PowerShellのv7.4より前までは、バイナリを出力するコマンドをリダイレクトするとファイルが壊れる現象があり、困っていた。
自分の場合、git showでバイナリファイルを取得する際に、以前のPowerShellではファイルが壊れるため、Git Bashに切り替えて取得するようにしていた。

PowerShell v7.3まで
PS> git show revisio:binary/file/path > binaryfile # ファイルが壊れる
Git Bash
$ git show revisio:binary/file/path > binaryfile # ファイルは正常

v7.4でバイトストリームをそのままリダイレクトするようになったため、PowerShell上でいけるようになっていた。
https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_redirection?view=powershell-7.4#example-7-redirecting-binary-data-from-a-native-command

PowerShell v7.4以降
PS> git show revisio:binary/file/path > binaryfile # ファイルは正常

とてもありがたい。

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?