OVERVIEW

  The mode 'print' takes its arguments (holes, notes, licks or special
  keywords) and prints their hole-content on the commandline.

  In addition it produces various reports about the licks that you
  have supplied or the scales and intervals that come with harpwise.

  If you specify a scale (optional) too, the scale-membership of the
  the notes will be shown.

  Its argument can be any of:

    - holes (e.g. '-1')
    - licks (e.g. 'st-louis')
    - scales (e.g. 'chord-i')

  or one of the known extra arguments (that themselves might require
  additional arguments):

<%= get_extra_desc(true).join("\n") %>

  
USAGE BY EXAMPLES

  Print holes and notes of a lick:

    harpwise print st-louis
    
  Print holes and notes of a scale (blues):

    harpwise print blues

  Print the scales, each note belongs to too:

    harpwise print chord-i feeling-bad --add-scales chord-iv,chord-v

  Print the major pentatonic scale but shift it down by 7 semitones;
  prepare for the case, that there might be a lick with the same name:

    harpwise print mape --transpose-scale -7st --scale-over-lick

  nearly the same result can be achieved by

    harpwise print mape

  and then take these holes as input for tools:

    harpwise tools shift -7st -2 -3// -3 -4 +5 +6


  Print all details for favorite licks:

    harpwise print licks-details --tags-any favorites

  (if you have tagged some licks as favorites)


  Print a list of licks (only those selected e.g. by -t)

    harpwise print licks-list

  A longer list of all known licks:

    harpwise print licks-list-all


  A report showing licks with stats regarding tags:

    harpwise print licks-with-tags

  (which might help to find underused or duplicate tags)


  Print licks with tags 'fav' first, and then all

    harpwise print licks-tags-stats -t fav

  which is (by using defaults) the same as:
  
    harpwise print richter licks-tags-stats -t fav

  If you have collected licks for the chromatic harmonica, you may
  also use:

    harpwise print chromatic licks-tags-stats


  Show the licks you played recently along with their shortcuts 'l',
  '2l', ...
  
    harpwise print licks-history


  List all the licks, that you have starred (press '*' in mode licks,
  while it is beeing played):

    harpwise print licks-starred

  Remark: In other modes you may access these licks through the
  tag 'starred', which they get assigned automatically.


  Show all known scales:

    harpwise print scales


  Show the names of all known intervals:

    harpwise print intervals


  You may also check out mode tools for some more helpers.
  
