mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-10 19:10:36 +00:00
10 lines
389 B
Plaintext
10 lines
389 B
Plaintext
# this is notes for video: http://www.youtube.com/watch?v=fKP0FLp3uW0
|
|
|
|
|
|
|
|
# copy/paste for linux machines (Mac style)
|
|
alias pbcopy='xclip -selection clipboard' # copy to clipboard, ctrl+c, ctrl+shift+c
|
|
alias pbpaste='xclip -selection clipboard -o' # paste from clipboard, ctrl+v, ctrl+shitt+v
|
|
alias pbselect='xclip -selection primary -o' # paste from highlight, middle click, shift+insert
|
|
|