Quantcast
Channel: Planet Ubuntu
Viewing all articles
Browse latest Browse all 17727

Paul Hummer: A Favor to Ask of Everyday Bazaar Users

$
0
0

This isn't going to make very much sense right now, but I'm merely gathering data, and would like to get a larger sampling of data than I currently have before I continue forward. I promise to not be evil and to explain myself shortly.

The favor I would like from people who use Bazaar regularly is this: I would like you to send me the output of the following command at your terminal:

  grep "^bzr" ~/.bash_history| awk '{print $1, $2}' | sort | uniq -c | sort

This may not work for everyone, especially if you don't use bash. For instance, I use zsh, so my command is actually:

  grep "^bzr" ~/.zsh_history| awk '{print $1, $2}' | sort | uniq -c | sort

You may have to adjust for your shell. Regardless, you should get output similar to this:

  1 bzr --no-plugins
  1 bzr commit
  1 bzr ignore
  1 bzr init
  1 bzr pipe
  1 bzr pump
  1 bzr shelve
  1 bzr t
  1 bzr unpushed
  1 bzr unshelve
  2 bzr add-pipe
  2 bzr blame
  2 bzr checkout
  2 bzr next
  2 bzr resolve
  3 bzr branch
  3 bzr clean-tree
  3 bzr diff
  3 bzr ignored
  3 bzr pdi
  3 bzr pdiff
  3 bzr revno
  3 bzr sdi
  3 bzr switch
  4 bzr log
  4 bzr prev
  4 bzr selftest
  4 bzr upgrade
  5 bzr pipes
  7 bzr lp-open
  7 bzr rm
  7 bzr sdiff
  8 bzr up
  9 bzr add
  9 bzr lp-land
  9 bzr mv
 12 bzr revert
 13 bzr merge
 14 bzr cdiff
 15 bzr cbranch
 17 bzr pqm-submit
 23 bzr push
 29 bzr di
 34 bzr cdi
 36 bzr ci
 44 bzr pull
 82 bzr st

If you could please email the output of that script to paul at eventuallyanyway dot com I would greatly appreciate it.


Viewing all articles
Browse latest Browse all 17727

Trending Articles