Browse Source

feat: add pbcopy/pbpaste aliases for linux

Kyle P Davis 5 years ago
parent
commit
505766e759
1 changed files with 2 additions and 0 deletions
  1. 2 0
      .profile

+ 2 - 0
.profile

@@ -78,6 +78,8 @@ if [ "$OS" = "Darwin" ]; then
 	export CLICOLOR=1
 else
 	alias ls="ls --color=auto"
+	alias pbcopy="xclip -selection clipboard"
+	alias pbpaste="xclip -selection clipboard -o"
 fi
 alias la="ls -Fa"
 alias ll="ls -Fla"