Created
July 24, 2019 16:41
-
-
Save cryptoquick/ed6e39a631f528a4d89561eafe8ae6b5 to your computer and use it in GitHub Desktop.
Revisions
-
chriscandy revised this gist
Mar 12, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ # Get pbcopy and pbpaste in Arch Linux First you need the 'xsel' package. $> pacman -S xsel Then create aliases. -
chriscandy created this gist
Mar 12, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # Get pbcopy and pbpaste in Arch Linux First you need the 'xsel' package. $> pacman -S xsel Then create aliases. alias pbcopy='xsel --clipboard --input' alias pbpaste='xsel --clipboard --output'