| 1234567891011121314151617181920212223242526272829303132333435363738394041 | Basic Usage===========Generate keychain-----------------All data stored using darc is protected by 256 bit AES encryption. This meansthat a keychain file needs to be created before any archives can be created:$ darc init-keychainThis will create a password protected keychain in ~/.darc/keychainCreate an empty darc store--------------------------$ darc init /path/storeCreate an archive-----------------$ darc create /path/store::MyBackup ~/Documents ~/srcList store contents-------------------$ darc list /path/storeList archive contents---------------------$ darc list /path/store::MyBackupExtract archive---------------$ darc extract /path/store::MyBackup /destinationDelete archive--------------$ darc delete /path/store::MyBackup
 |