Skip to content

Instantly share code, notes, and snippets.

@koyudoon
Last active August 29, 2015 14:12
Show Gist options
  • Save koyudoon/0f953b699e6a77723a23 to your computer and use it in GitHub Desktop.
Save koyudoon/0f953b699e6a77723a23 to your computer and use it in GitHub Desktop.
xsel issue
$ zsh --version
zsh 5.0.7 (x86_64-unknown-linux-gnu)
$ xsel --version
xsel version 1.2.0 by Conrad Parker <conrad@vergenet.net>
$ history -nm 'find *' 1 | wc -l
107
$ history -nm 'find *' 1 | xsel -ib; xsel -ob | wc -l
0
$ history -nm 'find *' 1 | head -n 99 | wc -l        
99
$ history -nm 'find *' 1 | head -n 99 | xsel -ib; xsel -ob | wc -l
99
$ history -nm 'find *' 1 | head -n 100 | wc -l                    
100
$ history -nm 'find *' 1 | head -n 100 | xsel -ib; xsel -ob | wc -l
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment