Changes between Initial Version and Version 1 of Bookmarks Project/Command Line Tool


Ignore:
Timestamp:
09/24/15 12:11:15 (9 years ago)
Author:
peter
Comment:

started documenting the command line tool

Legend:

Unmodified
Added
Removed
Modified
  • Bookmarks Project/Command Line Tool

    v1 v1  
     1= BookmarksProject Command Line Tool = 
     2 
     3The BookmarksProject includes a command line tool, [source:bookmarks/trunk/bin/bkmk bkmk], for managing your bookmarks. 
     4 
     5== Synopsis == 
     6 
     7{{{ 
     8$ bkmk -f bookmarks.db init 
     9$ bkmk -f bookmarks.db add http://cpan.org perl programming 
     10[... YAML representation of the newly added bookmark ...] 
     11$ export BKMK_DBNAME=bookmarks.db 
     12$ bkmk list 
     13[... list of bookmarks ...] 
     14 
     15# export and re-import to a new database 
     16$ bkmk -f old.db dump > export.yml 
     17$ bkmk -f new.db load export.yml 
     18}}}