15
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

1分で実現できる有用な技術Advent Calendar 2015

Day 2

windows10 の powershell やコマンドプロンプトはコピペがやりやすくなった

Posted at

windows 10 より前の問題点

  • Ctrl + C や Ctrl + V が使えない
  • コマンドの結果をコピペしようとすると短形選択になる

windows 10 では

  • Ctrl + C や Ctrl + V が使えるようになった
  • コマンドの結果をコピペしようとしたときに、短形選択ではなく通常のテキストエディタのように行選択できるようになった

設定方法

  • PowerShellのプロパティを開き、下記の設定ふたつを有効にする
    • Ctrlキーショートカットを有効にする(自分の環境だとデフォルトチェック済み。というかチェックを外してもCtrl+Cが普通につかえた。。。なぜ?)
    • 行の折り返し選択を有効にする

powershell_property.PNG

まとめ

  • 今までコピペが面倒でPowerShellを立ち上げなかったような作業も、気軽にPowerShellで作業できるようになりました!
    • (ls).name(ls).fullname でファイル名一覧を出してコピペとか
    • (iwr http://example.com).headers でヘッダーだしてコピペとか
15
13
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
15
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?