UbuntuでmacOSのpbcopyのようにコマンドの出力をクリップボードに入れる方法
1026 ワード
まずはxclipをインストール
sudo apt-get install xclip -y
aliasを設定
.bashrcや.zshrcに書き設定を追記。
alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'
設定を反映
source ~/.zshrc
つかってみる
ls | pbcopy
これでクリップボードに入っていればOK!
Author And Source
この問題について(UbuntuでmacOSのpbcopyのようにコマンドの出力をクリップボードに入れる方法), 我々は、より多くの情報をここで見つけました https://qiita.com/reoring/items/47689c23d2e31035720b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .