Changes between Version 1 and Version 2 of jazz/20-11-12


Ignore:
Timestamp:
Apr 21, 2023, 10:05:26 AM (14 months ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/20-11-12

    v1 v2  
    55- `pbcopy` on Ubuntu = `xclip`
    66- https://garywoodfine.com/use-pbcopy-on-ubuntu/
     7{{{
     8#!bash
     9sudo apt-get -y install xclip
     10}}}
     11- add those alias to `.bashrc`
     12{{{
     13#!bash
     14alias pbcopy='xclip -selection clipboard'
     15alias pbpaste='xclip -selection clipboard -o'
     16}}}