aboutsummaryrefslogtreecommitdiffstats
path: root/README.html
blob: f6bd5503cd0505c266c1742d66443bc271aba764 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2018-10-28 Sun 13:22 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>&lrm;</title>
<meta name="generator" content="Org mode" />
<style type="text/css">
 <!--/*--><![CDATA[/*><!--*/
  .title  { text-align: center;
             margin-bottom: .2em; }
  .subtitle { text-align: center;
              font-size: medium;
              font-weight: bold;
              margin-top:0; }
  .todo   { font-family: monospace; color: red; }
  .done   { font-family: monospace; color: green; }
  .priority { font-family: monospace; color: orange; }
  .tag    { background-color: #eee; font-family: monospace;
            padding: 2px; font-size: 80%; font-weight: normal; }
  .timestamp { color: #bebebe; }
  .timestamp-kwd { color: #5f9ea0; }
  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
  .underline { text-decoration: underline; }
  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
  p.verse { margin-left: 3%; }
  pre {
    border: 1px solid #ccc;
    box-shadow: 3px 3px 3px #eee;
    padding: 8pt;
    font-family: monospace;
    overflow: auto;
    margin: 1.2em;
  }
  pre.src {
    position: relative;
    overflow: visible;
    padding-top: 1.2em;
  }
  pre.src:before {
    display: none;
    position: absolute;
    background-color: white;
    top: -10px;
    right: 10px;
    padding: 3px;
    border: 1px solid black;
  }
  pre.src:hover:before { display: inline;}
  /* Languages per Org manual */
  pre.src-asymptote:before { content: 'Asymptote'; }
  pre.src-awk:before { content: 'Awk'; }
  pre.src-C:before { content: 'C'; }
  /* pre.src-C++ doesn't work in CSS */
  pre.src-clojure:before { content: 'Clojure'; }
  pre.src-css:before { content: 'CSS'; }
  pre.src-D:before { content: 'D'; }
  pre.src-ditaa:before { content: 'ditaa'; }
  pre.src-dot:before { content: 'Graphviz'; }
  pre.src-calc:before { content: 'Emacs Calc'; }
  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
  pre.src-fortran:before { content: 'Fortran'; }
  pre.src-gnuplot:before { content: 'gnuplot'; }
  pre.src-haskell:before { content: 'Haskell'; }
  pre.src-hledger:before { content: 'hledger'; }
  pre.src-java:before { content: 'Java'; }
  pre.src-js:before { content: 'Javascript'; }
  pre.src-latex:before { content: 'LaTeX'; }
  pre.src-ledger:before { content: 'Ledger'; }
  pre.src-lisp:before { content: 'Lisp'; }
  pre.src-lilypond:before { content: 'Lilypond'; }
  pre.src-lua:before { content: 'Lua'; }
  pre.src-matlab:before { content: 'MATLAB'; }
  pre.src-mscgen:before { content: 'Mscgen'; }
  pre.src-ocaml:before { content: 'Objective Caml'; }
  pre.src-octave:before { content: 'Octave'; }
  pre.src-org:before { content: 'Org mode'; }
  pre.src-oz:before { content: 'OZ'; }
  pre.src-plantuml:before { content: 'Plantuml'; }
  pre.src-processing:before { content: 'Processing.js'; }
  pre.src-python:before { content: 'Python'; }
  pre.src-R:before { content: 'R'; }
  pre.src-ruby:before { content: 'Ruby'; }
  pre.src-sass:before { content: 'Sass'; }
  pre.src-scheme:before { content: 'Scheme'; }
  pre.src-screen:before { content: 'Gnu Screen'; }
  pre.src-sed:before { content: 'Sed'; }
  pre.src-sh:before { content: 'shell'; }
  pre.src-sql:before { content: 'SQL'; }
  pre.src-sqlite:before { content: 'SQLite'; }
  /* additional languages in org.el's org-babel-load-languages alist */
  pre.src-forth:before { content: 'Forth'; }
  pre.src-io:before { content: 'IO'; }
  pre.src-J:before { content: 'J'; }
  pre.src-makefile:before { content: 'Makefile'; }
  pre.src-maxima:before { content: 'Maxima'; }
  pre.src-perl:before { content: 'Perl'; }
  pre.src-picolisp:before { content: 'Pico Lisp'; }
  pre.src-scala:before { content: 'Scala'; }
  pre.src-shell:before { content: 'Shell Script'; }
  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
  /* additional language identifiers per "defun org-babel-execute"
       in ob-*.el */
  pre.src-cpp:before  { content: 'C++'; }
  pre.src-abc:before  { content: 'ABC'; }
  pre.src-coq:before  { content: 'Coq'; }
  pre.src-groovy:before  { content: 'Groovy'; }
  /* additional language identifiers from org-babel-shell-names in
     ob-shell.el: ob-shell is the only babel language using a lambda to put
     the execution function name together. */
  pre.src-bash:before  { content: 'bash'; }
  pre.src-csh:before  { content: 'csh'; }
  pre.src-ash:before  { content: 'ash'; }
  pre.src-dash:before  { content: 'dash'; }
  pre.src-ksh:before  { content: 'ksh'; }
  pre.src-mksh:before  { content: 'mksh'; }
  pre.src-posh:before  { content: 'posh'; }
  /* Additional Emacs modes also supported by the LaTeX listings package */
  pre.src-ada:before { content: 'Ada'; }
  pre.src-asm:before { content: 'Assembler'; }
  pre.src-caml:before { content: 'Caml'; }
  pre.src-delphi:before { content: 'Delphi'; }
  pre.src-html:before { content: 'HTML'; }
  pre.src-idl:before { content: 'IDL'; }
  pre.src-mercury:before { content: 'Mercury'; }
  pre.src-metapost:before { content: 'MetaPost'; }
  pre.src-modula-2:before { content: 'Modula-2'; }
  pre.src-pascal:before { content: 'Pascal'; }
  pre.src-ps:before { content: 'PostScript'; }
  pre.src-prolog:before { content: 'Prolog'; }
  pre.src-simula:before { content: 'Simula'; }
  pre.src-tcl:before { content: 'tcl'; }
  pre.src-tex:before { content: 'TeX'; }
  pre.src-plain-tex:before { content: 'Plain TeX'; }
  pre.src-verilog:before { content: 'Verilog'; }
  pre.src-vhdl:before { content: 'VHDL'; }
  pre.src-xml:before { content: 'XML'; }
  pre.src-nxml:before { content: 'XML'; }
  /* add a generic configuration mode; LaTeX export needs an additional
     (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
  pre.src-conf:before { content: 'Configuration File'; }

  table { border-collapse:collapse; }
  caption.t-above { caption-side: top; }
  caption.t-bottom { caption-side: bottom; }
  td, th { vertical-align:top;  }
  th.org-right  { text-align: center;  }
  th.org-left   { text-align: center;   }
  th.org-center { text-align: center; }
  td.org-right  { text-align: right;  }
  td.org-left   { text-align: left;   }
  td.org-center { text-align: center; }
  dt { font-weight: bold; }
  .footpara { display: inline; }
  .footdef  { margin-bottom: 1em; }
  .figure { padding: 1em; }
  .figure p { text-align: center; }
  .inlinetask {
    padding: 10px;
    border: 2px solid gray;
    margin: 10px;
    background: #ffffcc;
  }
  #org-div-home-and-up
   { text-align: right; font-size: 70%; white-space: nowrap; }
  textarea { overflow-x: auto; }
  .linenr { font-size: smaller }
  .code-highlighted { background-color: #ffff00; }
  .org-info-js_info-navigation { border-style: none; }
  #org-info-js_console-label
    { font-size: 10px; font-weight: bold; white-space: nowrap; }
  .org-info-js_search-highlight
    { background-color: #ffff00; color: #000000; font-weight: bold; }
  .org-svg { width: 90%; }
  /*]]>*/-->
</style>
<script type="text/javascript">
/*
@licstart  The following is the entire license notice for the
JavaScript code in this tag.

Copyright (C) 2012-2018 Free Software Foundation, Inc.

The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version.  The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.

As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.


@licend  The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
 function CodeHighlightOn(elem, id)
 {
   var target = document.getElementById(id);
   if(null != target) {
     elem.cacheClassElem = elem.className;
     elem.cacheClassTarget = target.className;
     target.className = "code-highlighted";
     elem.className   = "code-highlighted";
   }
 }
 function CodeHighlightOff(elem, id)
 {
   var target = document.getElementById(id);
   if(elem.cacheClassElem)
     elem.className = elem.cacheClassElem;
   if(elem.cacheClassTarget)
     target.className = elem.cacheClassTarget;
 }
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#orgf8d00be">ck</a>
<ul>
<li><a href="#orgf43f116">Technicalities</a></li>
<li><a href="#orge578423">Download</a></li>
</ul>
</li>
<li><a href="#build-instructions">build it</a>
<ul>
<li><a href="#org6787614">requirements</a></li>
<li><a href="#org5689497">make &amp;&amp; install</a></li>
</ul>
</li>
<li><a href="#org8db7ac9">for devs</a>
<ul>
<li><a href="#org42a6614">CMake options</a></li>
<li><a href="#org5501d31">compiler</a></li>
<li><a href="#org3720cae">tests</a>
<ul>
<li><a href="#org7b06e14">run tests</a></li>
<li><a href="#org7ad16bc">test suite</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#manual">manual</a>
<ul>
<li><a href="#orgb40149d">ck configuration</a></li>
<li><a href="#org52aba1d">Actions</a>
<ul>
<li><a href="#org7ba72be">init</a></li>
<li><a href="#org9ae26ce">add</a></li>
<li><a href="#orgb4adc9b">list</a></li>
<li><a href="#org442a05c">search</a></li>
<li><a href="#org6320932">edit</a></li>
<li><a href="#orgae8e7fb">restore</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#orgf44bdc3">manpage</a></li>
</ul>
</div>
</div>
<p align="center"><img src="res/logo.png"></p>
<div id="outline-container-orgf8d00be" class="outline-2">
<h2 id="orgf8d00be">ck</h2>
<div class="outline-text-2" id="text-orgf8d00be">
<p>
<b>The Config Keeper</b>
</p>

<p>
Have you ever wondered:
</p>
<blockquote>
<p>
"Jeez Luiz, how can I manage all my configs across my desktop and server?"
</p>

<p>
&#x2013; You
</p>
</blockquote>

<p>
or maybe:
</p>
<blockquote>
<p>
"How can I possibly keep all my configs in sync across computers?"
</p>

<p>
&#x2013; You again
</p>
</blockquote>

<p>
<b>ck</b> is the solution you've been looking for all your life.
</p>

<p>
With it you can keep track of all the configs you cherish and love,
and store them neat and tidy in a folder you can later sync using
your favorite sync solution (git, nextcloud, rsync). You can even gift
your precious data to Google and use GDrive (<i><i>not recommended!!</i></i>).
</p>

<p>
After you create your local config db you can list them, edit them
and even search in them, all within the comforting hands of <b>ck</b>, your
faithful companion.
</p>

<p>
You can also use <b>ck</b> to store sensitive configurations (with passwords, etc)
and instruct it to save them in a different folder, so they won't be in the
same place with the normal ones (in the event you want to share your configs
with the rest of us).
</p>
</div>

<div id="outline-container-orgf43f116" class="outline-3">
<h3 id="orgf43f116">Technicalities</h3>
<div class="outline-text-3" id="text-orgf43f116">
<p>
Upon adding a config to <b>ck</b>, it moves it to the specified folder and adds a symbolic link
back where it came from (<code>ln -s</code>).
</p>

<p>
Make sure that the target program can read it's configuration from a symlink (the vast
majority should).
</p>
</div>
</div>

<div id="outline-container-orge578423" class="outline-3">
<h3 id="orge578423">Download</h3>
<div class="outline-text-3" id="text-orge578423">
<p>
Go ahead and download <b>ck</b> and give it a try. It comes with a help sub-command
that explains any inquires you might have.
</p>

<p>
Grab the latest zip/tarball from the tag section in the <a href="https://ubuntos.dynu.net/git/ck">repo</a> and proceed to
the <a href="#build-instructions">build</a> section.
</p>

<p>
You can also read the manual <a href="#manual">down below</a>.
</p>
</div>
</div>
</div>

<div id="outline-container-orgeb48bed" class="outline-2">
<h2 id="build-instructions"><a id="orgeb48bed"></a>build it</h2>
<div class="outline-text-2" id="text-build-instructions">
</div>
<div id="outline-container-org6787614" class="outline-3">
<h3 id="org6787614">requirements</h3>
<div class="outline-text-3" id="text-org6787614">
<ul class="org-ul">
<li>cmake</li>
<li>sqlite3-dev</li>
<li>build tools (gcc/llvm, make&#x2026;)</li>
</ul>
</div>
</div>

<div id="outline-container-org5689497" class="outline-3">
<h3 id="org5689497">make &amp;&amp; install</h3>
<div class="outline-text-3" id="text-org5689497">
<p>
Use <code>-DCMAKE_INSTALL_PREFIX</code> when running cmake to change the install path.
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">clone the repo</span>
&gt; cd ~/code; git clone https://gitlab.com/grm-grm/ck
<span style="color: #656565;"># </span><span style="color: #757575;">make a build directory and enter it</span>
&gt; mkdir ~/ck_build; <span style="color: #528fd1;">cd</span> ~/ck_build;
<span style="color: #656565;"># </span><span style="color: #757575;">run cmake</span>
&gt; cmake ~/code/ck 
<span style="color: #656565;"># </span><span style="color: #757575;">run make</span>
&gt; make
<span style="color: #656565;"># </span><span style="color: #757575;">install it</span>
&gt; make install
<span style="color: #656565;"># </span><span style="color: #757575;">run ck</span>
&gt; ck
</pre>
</div>
</div>
</div>
</div>

<div id="outline-container-org8db7ac9" class="outline-2">
<h2 id="org8db7ac9">for devs</h2>
<div class="outline-text-2" id="text-org8db7ac9">
<p>
Please be <a href="https://www.gnu.org/philosophy/kind-communication.html">kind</a> to each other.
</p>
</div>
<div id="outline-container-org42a6614" class="outline-3">
<h3 id="org42a6614">CMake options</h3>
<div class="outline-text-3" id="text-org42a6614">
<p>
cmake accepts the following options:
</p>
<div class="org-src-container">
<pre class="src src-cmake"><span style="color: #6aaf50;">option</span>(CK_DEBUG <span style="color: #bdbc61;">"Build with debug symbols, asan and warnings"</span>)
<span style="color: #6aaf50;">option</span>(CK_TESTS <span style="color: #bdbc61;">"Make the tests"</span>)
<span style="color: #6aaf50;">option</span>(CK_SHARED <span style="color: #bdbc61;">"Build with shared lib"</span>)
</pre>
</div>

<p>
To use any one of them append it after the cmake command like so:
</p>
<div class="org-src-container">
<pre class="src src-sh">cmake -DCK_DEBUG=1 -DCK_TESTS=1 ~/code/ck
</pre>
</div>
</div>
</div>

<div id="outline-container-org5501d31" class="outline-3">
<h3 id="org5501d31">compiler</h3>
<div class="outline-text-3" id="text-org5501d31">
<p>
Pick your favorite
</p>
<div class="org-src-container">
<pre class="src src-sh">&gt; export <span style="color: #baba36;">CC</span>=clang
<span style="color: #656565;"># </span><span style="color: #757575;">or</span>
&gt; export <span style="color: #baba36;">CC</span>=gcc
</pre>
</div>


<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">clone the repo</span>
&gt; cd ~/code; git clone https://gitlab.com/grm-grm/ck
<span style="color: #656565;"># </span><span style="color: #757575;">make a build directory and enter it</span>
&gt; mkdir ~/ck_build; <span style="color: #528fd1;">cd</span> ~/ck_build;
<span style="color: #656565;"># </span><span style="color: #757575;">run cmake</span>
&gt; cmake -DCK_DEBUG=1 -DCK_TESTS=1 ~/code/ck
<span style="color: #656565;"># </span><span style="color: #757575;">run make</span>
&gt; make
<span style="color: #656565;"># </span><span style="color: #757575;">check ck</span>
&gt; ./test-ck
<span style="color: #656565;"># </span><span style="color: #757575;">run ck</span>
&gt; ./ck
</pre>
</div>
</div>
</div>

<div id="outline-container-org3720cae" class="outline-3">
<h3 id="org3720cae">tests</h3>
<div class="outline-text-3" id="text-org3720cae">
<p>
The testing "suite" is a bash script that runs regression
and unit tests. Regression tests are under the <code>tests/</code> directory
and are bash scripts that test <code>ck</code> functionality. Unit tests reside
under <code>unit/</code> directory and test the code.
</p>
</div>

<div id="outline-container-org7b06e14" class="outline-4">
<h4 id="org7b06e14">run tests</h4>
<div class="outline-text-4" id="text-org7b06e14">
<p>
First make sure you build ck with the <code>-DCK_TESTS=1</code> option. Then
go to the build directory and type:
</p>
<div class="org-src-container">
<pre class="src src-sh">$ ./test-ck
</pre>
</div>
</div>
</div>

<div id="outline-container-org7ad16bc" class="outline-4">
<h4 id="org7ad16bc">test suite</h4>
<div class="outline-text-4" id="text-org7ad16bc">
<div class="org-src-container">
<pre class="src src-sh">$ ./test-ck -h
ck test suite
use without flags to run all tests

flags:
  -u, --unit            run only the unit tests
  -r, --regression      run only the regression tests
  -c, --clear           remove test files
                         use if the tests crush unexpectedly
  -h, --help, *         print this
</pre>
</div>
</div>
</div>
</div>
</div>
<div id="outline-container-orgfd8f2dc" class="outline-2">
<h2 id="manual"><a id="orgfd8f2dc"></a>manual</h2>
<div class="outline-text-2" id="text-manual">
<p>
ck's goal is to assist with the configuration file management.
To that end it tries to provides a cli interface that is pretty straight-forward
and intuitive.
</p>

<p>
Example usage:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">initialize new ck</span>
$ ck init /path_to/where_you_want/your_configs/to_be <span style="color: #bdbc61;">\</span>
  /path_to/the_secret/directory

<span style="color: #656565;"># </span><span style="color: #757575;">add emacs configs</span>
<span style="color: #656565;">## </span><span style="color: #757575;">primary config</span>
$ ck add emacs ~/.emacs.d/orgconf.org -p
<span style="color: #656565;">## </span><span style="color: #757575;">secret config, with passwords and naughty words</span>
$ ck add emacs ~/.emacs.d/accounts.org -s
<span style="color: #656565;">## </span><span style="color: #757575;">and another one for emacs</span>
$ ck add emacs ~/.emacs.d/init.el

<span style="color: #656565;"># </span><span style="color: #757575;">add tmux config</span>
$ ck add tmux ~/.tmux.conf -p

<span style="color: #656565;"># </span><span style="color: #757575;">list the configs</span>
$ ck list tree
$ ck list paths -t lisp
$ ck list programs -t python
$ ck list -p emacs

<span style="color: #656565;"># </span><span style="color: #757575;">search the configs</span>
$ ck search search-term
$ ck search <span style="color: #bdbc61;">"\"search term with spaces\""</span>
$ ck search <span style="color: #bdbc61;">"\("</span> <span style="color: #656565;">#</span><span style="color: #757575;">escape symbols</span>
</pre>
</div>

<p>
The first command after typing <b>ck</b> is the action you wish to perform. Actions are 
a very important concept of ck. With an action you can initialize <b>ck</b>, add/delete
configuration files to/from it, edit them, list them in various ways and search in their content.
</p>

<p>
Actions expect their arguments in the order specified below. This is done to reduce the amount
of flags one has to pass to ck.
</p>
</div>

<div id="outline-container-orgb40149d" class="outline-3">
<h3 id="orgb40149d">ck configuration</h3>
<div class="outline-text-3" id="text-orgb40149d">
<p>
ck uses sqlite to index the configuration files. The init
action creates a <b>.ck</b> directory (under <code>$HOME</code>)
in witch the <b>ckrc</b> and the <b>ckdb</b> reside. The first one contains
the two directories described above while the other one is the
sqlite db.
</p>

<p>
One can have multiple config directories with different configurations
each.
</p>

<p>
Using the special keyword <b>config</b> (or <b>-c</b>) you can set the path
in which ck will search for the <b>.ck</b> directory.
</p>

<p>
You can prefix every action with this and ck will use the configuration
directory of your choice.
</p>

<p>
Usage:
</p>
<div class="org-src-container">
<pre class="src src-sh">$ ck config ~/ ... <span style="color: #656565;"># </span><span style="color: #757575;">the default behaviour</span>

<span style="color: #656565;"># </span><span style="color: #757575;">/someplace/else must exist or</span>
<span style="color: #656565;"># </span><span style="color: #757575;">the action following it must be init</span>
$ ck -c /someplace/else ... 
</pre>
</div>
</div>
</div>

<div id="outline-container-org52aba1d" class="outline-3">
<h3 id="org52aba1d">Actions</h3>
<div class="outline-text-3" id="text-org52aba1d">
</div>
<div id="outline-container-org7ba72be" class="outline-4">
<h4 id="org7ba72be">init</h4>
<div class="outline-text-4" id="text-org7ba72be">
<p>
or i or -i
</p>

<p>
init takes exactly 2 arguments.
</p>

<ul class="org-ul">
<li><b>config_dir</b>: where all the configs will live</li>
<li><b>secret_dir</b>: where all the secret configs will live</li>
</ul>

<p>
Use init to initialize a new ck database.
</p>

<p>
Usage:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">initialize new ck</span>
$ ck init /path_to/where_you_want/your_configs/to_be <span style="color: #bdbc61;">\</span>
  /path_to/the_secret/directory
</pre>
</div>
</div>
</div>

<div id="outline-container-org9ae26ce" class="outline-4">
<h4 id="org9ae26ce">add</h4>
<div class="outline-text-4" id="text-org9ae26ce">
<p>
or a or -a
</p>

<p>
Adds a configuration to the ck database.
Add takes 2 to 4 arguments.
</p>

<ul class="org-ul">
<li><b>program_name</b>: the name of the program you add a config to</li>
<li><b>config_path</b>: the path to the config</li>
<li>Optional: (order doesn't matter)
<ul class="org-ul">
<li><b>-p</b>: the config will be the primary (relevant on edit below)</li>
<li><b>-s</b>: the config will be stored in the secret_dir</li>
</ul></li>
</ul>

<p>
Keep in mind:
</p>
<ul class="org-ul">
<li>The config has to exist.</li>
<li>If you are adding a config to a program already existing in ckdb make
sure to use the same name.</li>
<li>Each program can have only one primary config.</li>
</ul>

<p>
Usage:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">add config to ck</span>
$ ck add program_name config_path [-s] [-p]
</pre>
</div>
</div>
</div>

<div id="outline-container-orgb4adc9b" class="outline-4">
<h4 id="orgb4adc9b">list</h4>
<div class="outline-text-4" id="text-orgb4adc9b">
<p>
or ls or l or -l
</p>

<p>
List stuff ck knows about.
</p>

<p>
You can use the keywords:
</p>
<ul class="org-ul">
<li><b>paths</b>: to print all the paths ck tracks</li>
<li><b>programs</b>: to print all the programs ck tracks</li>
<li><b>-p progName</b>: (without the "&lt;&gt;") to print the paths of a specific program</li>
</ul>

<p>
With the flag <b>-t</b> and then one of the follwing types one can change
the way the list is printed:
</p>
<ul class="org-ul">
<li><b>plain</b>: simple listing (default)</li>
<li><b>python</b>: print like a python list</li>
<li><b>lisp</b>: print like a lisp list</li>
</ul>

<p>
Using the keyword <b>tree</b> ck can list the configurations under their
corresponding program, in a treelike structure.
</p>

<p>
Passing the <b>-a</b> flag will enable the listing of config attributes (secret or primary). 
It is best used with tree or plain paths.
</p>

<p>
With the keyword <b>ckconf</b> ck will list it's own configuration values (in ckrc).
</p>

<p>
Usage:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">list tree structure, with attributes</span>
$ ck list tree -a
<span style="color: #656565;"># </span><span style="color: #757575;">list paths in python</span>
$ ck l paths -t python
<span style="color: #656565;"># </span><span style="color: #757575;">list programs in lisp</span>
$ ck ls programs -t lisp
<span style="color: #656565;"># </span><span style="color: #757575;">list emacs' configurations [with attributes]</span>
$ ck ls -p emacs [-a]
<span style="color: #656565;"># </span><span style="color: #757575;">list bash configurations in lisp</span>
$ ck ls -p bash -t lisp
<span style="color: #656565;"># </span><span style="color: #757575;">list ck configuration</span>
$ ck -l ckconf
</pre>
</div>
</div>
</div>

<div id="outline-container-org442a05c" class="outline-4">
<h4 id="org442a05c">search</h4>
<div class="outline-text-4" id="text-org442a05c">
<p>
or grep or s or -s
</p>

<p>
Perform infile grep in all the configurations ck keeps track of.
</p>

<p>
Takes one argument, the <b>search-term</b>.
</p>

<p>
To search for terms with spaces you have to put them in quotes.
</p>

<p>
Usage:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">search for parenthesis</span>
$ ck search <span style="color: #bdbc61;">\(</span>
<span style="color: #656565;"># </span><span style="color: #757575;">search term with spaces</span>
$ ck grep <span style="color: #bdbc61;">"This is a space"</span>
<span style="color: #656565;"># </span><span style="color: #757575;">both</span>
$ ck s <span style="color: #bdbc61;">"(add 2 4)"</span>
<span style="color: #656565;"># </span><span style="color: #757575;">and a normal one</span>
$ ck -s alias
</pre>
</div>

<p>
If you want to use more advanced grep techniques or even
a different pattern matching program you can do it like so:
</p>

<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">with xargs</span>
$ ck ls paths | xargs grep -E <span style="color: #bdbc61;">'A|B'</span>
<span style="color: #656565;"># </span><span style="color: #757575;">or in bash</span>
$ for i<span style="color: #5180b3;"> in</span> $(ck ls paths); <span style="color: #5180b3;">do</span> grep -E <span style="color: #bdbc61;">'A|B'</span> $<span style="color: #baba36;">i</span>; <span style="color: #5180b3;">done</span>
<span style="color: #656565;"># </span><span style="color: #757575;">or in zsh</span>
$ for i ($(ck ls paths)) grep -E <span style="color: #bdbc61;">'A|B'</span> $<span style="color: #baba36;">i</span>
</pre>
</div>
</div>
</div>

<div id="outline-container-org6320932" class="outline-4">
<h4 id="org6320932">edit</h4>
<div class="outline-text-4" id="text-org6320932">
<p>
or e or -e
</p>

<p>
Edit configurations with <code>$EDITOR</code>.
</p>

<p>
Edit takes at least one and up to two arguments.
</p>

<p>
The first argument is the <b>programName</b>. If the program has a primary configuration
edit will open this. If the program has only one configuration edit will open it. 
If the program has more than 1 configurations and no primary, it will print the 
avaliable configurations and exit.
</p>

<p>
The second argument is the <b>configName</b>. If it exists it will open, else it will 
print the avaliable configurations and exit.
</p>

<p>
Usage:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">suppose this is our ck instance</span>
$ ck list tree -a
emacs:
|- init.el
|- accounts.el [s]
|- orgconf.org [p]

<span style="color: #656565;"># </span><span style="color: #757575;">edit the primary emacs config</span>
$ ck edit emacs

<span style="color: #656565;"># </span><span style="color: #757575;">edit a specific emacs config, other than the primary</span>
$ ck edit emacs accounts.el
</pre>
</div>
</div>
</div>

<div id="outline-container-orgae8e7fb" class="outline-4">
<h4 id="orgae8e7fb">restore</h4>
<div class="outline-text-4" id="text-orgae8e7fb">
<p>
or r or -r
</p>

<p>
Restore links.
</p>

<p>
Given a working ck instance (ckdb + ckrc + directories in ckrc with configs)
restore shall recreate the links from the config directories in ckrc
back to their corresponding position when added in ck.
</p>

<p>
It is useful for copying your configs to a new linux installation
or restoring deleted links.
</p>

<p>
It can either restore a specific program or all of them:
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #656565;"># </span><span style="color: #757575;">restore progName</span>
ck restore -p progName
<span style="color: #656565;"># </span><span style="color: #757575;">restore all</span>
ck r all
</pre>
</div>

<p>
Note:
If ck tracks configs that are owned by root, simply running
`ck restore &#x2026;` will fail due to permissions. To remedy this, ck will alter the
owner and group of a link to match the one in the ckrc directories.
Thus, running `sudo ck -c <i>home/myuser</i>.ck restore ..` will restore
the root user's links as it should and the user links will have
the user as the owner instead of the root.
</p>

<p>
ck checks that the configs exist and that the location for the link
is avaliable before making any links. However, in the even that symlink
fails for some other reason, the process will stop as is. Make sure you
take care of the already created links, if that's the case.
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-orgf44bdc3" class="outline-2">
<h2 id="orgf44bdc3">manpage</h2>
<div class="outline-text-2" id="text-orgf44bdc3">
<!-- Creator     : groff version 1.22.3 -->
<!-- CreationDate: Sun Oct 28 13:22:50 2018 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<meta name="Content-Style" content="text/css">
<style type="text/css">
       p       { margin-top: 0; margin-bottom: 0; vertical-align: top }
       pre     { margin-top: 0; margin-bottom: 0; vertical-align: top }
       table   { margin-top: 0; margin-bottom: 0; vertical-align: top }
       h1      { text-align: center }
</style>
<title>ck</title>

</head>
<body>

<h1 align="center">ck</h1>

<a href="#NAME">NAME</a><br>
<a href="#SYNOPSIS">SYNOPSIS</a><br>
<a href="#DESCRIPTION">DESCRIPTION</a><br>
<a href="#OPTIONS">OPTIONS</a><br>
<a href="#ACTIONS">ACTIONS</a><br>
<a href="#EXIT STATUS">EXIT STATUS</a><br>
<a href="#FILES">FILES</a><br>
<a href="#BUILD VALUES">BUILD VALUES</a><br>
<a href="#VERSION">VERSION</a><br>
<a href="#AUTHOR">AUTHOR</a><br>

<hr>


<h2>NAME
<a name="NAME"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em">ck &minus;
manage configuration across the system</p>

<h2>SYNOPSIS
<a name="SYNOPSIS"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em"><b>ck</b>
[<b>&minus;v</b>|<b>&minus;&minus;verbose</b>]
[<b>&minus;c</b>|<b>&minus;&minus;config</b> <i>DIR</i>]
<i>action&nbsp;</i>[...] <b><br>
ck</b> [<b>version</b>|<b>&minus;&minus;version</b>] <b><br>
ck init</b> <i>VERSION_CONTROL_DIR SECRET_DIR</i> <b><br>
ck add</b> <i>PROGRAM_NAME CONFIG_PATH</i> [<b>&minus;p</b>]
[<b>&minus;s</b>] <b><br>
ck delete</b>
<i>PROGRAM_NAME</i>|{<b>&minus;c&nbsp;</b><i>CONFIG_PATH</i>}
<b><br>
ck list tree&nbsp;</b>[<b>&minus;a</b>] <b><br>
ck list</b>
{<b>-p&nbsp;</b><i>PROGRAM_NAME</i>}|<b>programs</b>|<b>paths&nbsp;</b>[<b>&minus;t</b>
{<b>plain</b>|<b>python</b>|<b>lisp</b>}] [<b>&minus;a</b>]
<b><br>
ck list ckconf <br>
ck edit</b>
<i>PROGRAM_NAME&nbsp;</i>[<i>CONFIG_BASENAME</i>] <b><br>
ck search</b> <i>SEARCH_TERM</i> <b><br>
ck restore</b> <i>PROGRAM_NAME</i>|<b>all <br>
ck help</b> <i>action</i></p>

<h2>DESCRIPTION
<a name="DESCRIPTION"></a>
</h2>



<p style="margin-left:11%; margin-top: 1em"><i><b>ck</b></i>
manages configuration files in a Linux system. To that end
it provides an <b>action</b> based command line
interface.</p>

<p style="margin-left:11%; margin-top: 1em"><b>ck</b> needs
a database and an rc file to run. It also needs two
directories (stored in the rc file), the
<i>VERSION_CONRTOL_DIR</i> and the <i>SECRET_DIR</i>. This
is where the configurations will end up after they are added
to <b>ck</b>. The <b>init</b> action takes care of them. For
more details see the
<b>ACTIONS&nbsp;</b>and&nbsp;<b>FILES</b> sections
below.</p>

<p style="margin-left:11%; margin-top: 1em">In <b>ck</b>
terms a <i>program</i> is an entity that has one or more
<i>configs</i> attached to it. Each <i>program</i> can have
exactly one <b>primary&nbsp;</b><i>config</i>. Upon adding a
<i>config</i> to <b>ck</b>, it is moved to the appropriate
directory, and then symbolically linked back to it&rsquo;s
original place (<i>ln -s</i>).</p>

<p style="margin-left:11%; margin-top: 1em">In a later time
you can sync the <i>VERSION_CONRTOL_DIR</i> and
<i>SECRET_DIR</i>. You can also <b>restore</b> the links
given these two directories and the correspondig rc file and
database.</p>

<h2>OPTIONS
<a name="OPTIONS"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em">Change
<b>ck</b> behaviour using the following options. They must
be present before any <b>action. <br>
&minus;&minus;verbose</b>, <b>&minus;v</b></p>

<p style="margin-left:22%;">[WIP] <br>
Currently prints the log. Must be the first argument in
order to work.</p>

<p style="margin-left:11%;"><b>&minus;&minus;config</b>
<i>DIR</i>, <b>&minus;c</b> <i>DIR</i></p>

<p style="margin-left:22%;">Use
<b>ckdb&nbsp;</b>and&nbsp;<b>ckrc</b> residing in <i>DIR</i>
instead of the default <i>~/.ck/</i>.</p>

<p style="margin-left:11%;"><b>&minus;&minus;version</b>,
<b>version</b></p>

<p style="margin-left:22%;">Print version and licence
information, and quit.</p>

<h2>ACTIONS
<a name="ACTIONS"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em">Each
<b>action</b> has several aliases. The selected
<b>action</b> must be after the <b>OPTIONS</b> if any. All
available <b>actions</b> can be seen in the <b>SYNOPSIS</b>
section above.</p>

<p style="margin-left:11%; margin-top: 1em">Each
<b>action</b> takes a number of arguments and flags.</p>

<p style="margin-left:11%; margin-top: 1em"><b>Initialize
ck</b> <br>
Create the <b>ck</b> database (<i>ckdb</i>) and initialize
it. Create the ck config file (<i>ckrc</i>) and add the
directory paths to it.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck init</b>
<i>VERSION_CONTROL_DIR SECRET_DIR</i></p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>init</b>,&nbsp;<b>i</b>,&nbsp;<b>&minus;i</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>VERSION_CONTROL_DIR</i></p>

<p style="margin-left:17%;">The directory where
<b>configs</b> will be stored by default. <b>File must
exist</b>.</p>


<p style="margin-left:14%; margin-top: 1em"><i>SECRET_DIR</i></p>

<p style="margin-left:17%;">The directory where
<b>configs</b> will be stored when using the <b>&minus;s</b>
flag in <b>add</b>. <b>File must exist</b>.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;">$ ck init
/home/ckuser/configs/vc home/ckuser/configs/sec <br>
$ ck i configs/vc configs/sec</p>

<p style="margin-left:11%; margin-top: 1em"><b>Add
config</b> <br>
Add a <b>config</b> to the database (<i>ckdb</i>). Each
<b>config</b> belongs to a <b>program</b>. Every
<b>program</b> can have multiple <b>configs</b> under it and
one of them can be <b>primary</b>. The <b>edit action</b>
will open the <b>primary config</b> by default.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck add</b> <i>PROGRAM_NAME
CONFIG_PATH</i> [<b>&minus;p</b>] [<b>&minus;s</b>]</p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>add</b>,&nbsp;<b>a</b>,&nbsp;<b>&minus;a</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>PROGRAM_NAME</i></p>

<p style="margin-left:17%;">The name of the <b>program</b>
the <b>config</b> belongs at.</p>


<p style="margin-left:14%; margin-top: 1em"><i>CONFIG_PATH</i></p>

<p style="margin-left:17%;">Path to the <b>config</b>. Can
be relative.</p>


<p style="margin-left:11%; margin-top: 1em"><b>FLAGS</b></p>

<p style="margin-left:14%;"><b>&minus;s</b></p>

<p style="margin-left:17%;">Mark the <b>config</b> as
secret. It will be stored on the <i>SECRET_DIR</i>.</p>


<p style="margin-left:14%; margin-top: 1em"><b>&minus;p</b></p>

<p style="margin-left:17%;">Mark the <b>config</b> as
primary. The <b>edit action</b> will open this by
default.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;"># add emacs configs <br>
## primary config <br>
$ ck add emacs ~/.emacs.d/orgconf.org -p <br>
## secret config, with passwords <br>
$ ck add emacs ~/.emacs.d/accounts.org -s <br>
## another one for emacs <br>
$ ck add emacs ~/.emacs.d/init.el</p>

<p style="margin-left:11%; margin-top: 1em"><b>Delete
config</b> <br>
Delete a <b>config</b> or a <b>program</b> from the database
(<i>ckdb</i>). This will not touch the actual file and link.
It is up to the user to handle it.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck delete</b>
<i>PROGRAM_NAME</i>|{<b>&minus;c&nbsp;</b><i>CONFIG_PATH</i>}</p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>delete</b>,&nbsp;<b>del</b>,&nbsp;<b>d</b>,&nbsp;<b>&minus;d</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>PROGRAM_NAME</i></p>

<p style="margin-left:17%;">Delete the <b>program</b> and
all it&rsquo;s <b>configs</b>.</p>


<p style="margin-left:14%; margin-top: 1em"><b>&minus;c&nbsp;</b><i>CONFIG_PATH</i></p>

<p style="margin-left:17%;">Delete the <b>config</b>. This
has to be the full path of the link as shown by the <b>list
action</b>.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b>
<br>
$ ck delete emacs <br>
$ ck del -c /home/ckuser/.emacs.d/init.el</p>

<p style="margin-left:11%; margin-top: 1em"><b>List</b>
<br>
List programs, configs and ck configuration values.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck list
tree&nbsp;</b>[<b>&minus;a</b>] <b><br>
ck list</b>
{<b>-p&nbsp;</b><i>PROGRAM_NAME</i>}|<b>programs</b>|<b>paths&nbsp;</b>[<b>&minus;t</b>
{<b>plain</b>|<b>python</b>|<b>lisp</b>}] [<b>&minus;a</b>]
<b><br>
ck list ckconf</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>list</b>,&nbsp;<b>ls</b>,&nbsp;<b>l</b>,&nbsp;<b>-ls</b>,&nbsp;<b>&minus;l</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><b>tree</b></p>

<p style="margin-left:17%;">List <b>programs</b> with their
<b>configs</b> in a tree like structure.</p>


<p style="margin-left:14%; margin-top: 1em"><b>paths</b></p>

<p style="margin-left:17%;">List all the <b>config</b>
paths <b>ck</b> keeps track of.</p>


<p style="margin-left:14%; margin-top: 1em"><b>programs</b></p>

<p style="margin-left:17%;">List all the <b>programs ck</b>
keeps track of.</p>


<p style="margin-left:14%; margin-top: 1em"><b>&minus;c&nbsp;</b><i>PROGRAM_NAME</i></p>

<p style="margin-left:17%;">List all the <b>configs</b> of
<i>PROGRAM_NAME</i>.</p>


<p style="margin-left:14%; margin-top: 1em"><b>ckconf</b></p>

<p style="margin-left:17%;">List the <b>ck</b>
configuration values, like the
<i>VERSION_CONTROL_DIR&nbsp;</i>and&nbsp;<i>SECRET_DIR</i>.</p>


<p style="margin-left:11%; margin-top: 1em"><b>FLAGS</b></p>

<p style="margin-left:14%;"><b>&minus;t</b></p>

<p style="margin-left:17%;">Set the type of the
<b>list</b>. Can be either <b>plain</b> (the default) a
simple list, <b>python</b> to print it like a python array
or <b>lisp</b> to print it like a lisp list.</p>


<p style="margin-left:14%; margin-top: 1em"><b>&minus;a</b></p>

<p style="margin-left:17%;">Add attributes to the listing
(when aplicable). The attributes are <b>[s]</b> for
<b>secret</b>, <b>[p]</b> for <b>primary</b> and
<b>[root]</b> if the file is owned by the root user.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;">$ ck list tree -a <br>
$ ck list paths -t lisp <br>
$ ck list programs -t python <br>
$ ck list -p emacs</p>

<p style="margin-left:11%; margin-top: 1em"><b>Edit
configs</b> <br>
Edit a <b>config</b> stored in <b>ck</b> with the
<i>$EDITOR</i>. <b>Edit</b> will open the <b>primary
config</b> of the <b>program</b>. If there is no <b>primary
config</b> but the <b>program</b> only has one
<b>config</b>, <b>edit</b> will open that. Whenever there is
ambiguity, a list of possible <b>configs</b> will be
shown.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck edit</b>
<i>PROGRAM_NAME&nbsp;</i>[<i>CONFIG_BASENAME</i>]</p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>edit</b>,&nbsp;<b>e</b>,&nbsp;<b>&minus;e</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>PROGRAM_NAME</i></p>

<p style="margin-left:17%;">The name of the <b>program</b>
to be edited. If the <b>program</b> has only one
<b>config</b> or you want to edit the <b>primary</b> one, no
further action is required.</p>


<p style="margin-left:14%; margin-top: 1em"><i>CONFIG_BASENAME</i></p>

<p style="margin-left:17%;">The basename of the
<b>config</b> to be edited. This has to follow the
<b>program</b> name. It is only needed when editing a
<b>config</b> other than the <b>primary</b> one.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;">$ ck edit emacs <br>
$ ck e tmux .tmux.conf</p>

<p style="margin-left:11%; margin-top: 1em"><b>Search
configs</b> <br>
Grep through the configs. This <b>action</b> is equivalent
to this:</p>

<p style="margin-left:11%; margin-top: 1em">$ ck ls paths |
xargs grep -H -n &quot;search term&quot;</p>

<p style="margin-left:11%; margin-top: 1em">Thus for more
advanced search through the <b>configs</b> one can use other
programs and replace grep in the command above.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck search</b>
<i>SEARCH_TERM</i></p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>search</b>,&nbsp;<b>grep</b>,&nbsp;<b>s</b>,&nbsp;<b>&minus;s</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>SEARCH_TERM</i></p>

<p style="margin-left:17%;">The term you wish to search
for. If it&rsquo;s a phrase enclose it in &quot;&quot;. If
it&rsquo;s a special character you can escape it with \
(backslash).</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;">$ ck search &quot;search
term&quot; $ ck search &quot;quire&quot;</p>

<p style="margin-left:11%; margin-top: 1em"><b>Restore
configs</b> <br>
Given a working <b>ck</b> instance (<i>ckdb</i> +
<i>ckrc</i> + directories in <i>ckrc</i> with
<b>configs</b>),&nbsp;<b>restore</b> shall recreate the
links from the <b>config</b> directories in <i>ckrc</i> back
to their corresponding position when added to <b>ck</b>. It
is useful for copying <b>configs</b> to a new linux
installation or <b>restoring</b> deleted links. It can
either <b>restore</b> a specific <b>program</b> or all of
them.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck restore</b>
<i>PROGRAM_NAME</i>|<b>all</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>restore</b>,&nbsp;<b>r</b>,&nbsp;<b>&minus;r</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>PROGRAM_NAME</i></p>

<p style="margin-left:17%;">The name of the <b>program</b>
to be restored.</p>

<p style="margin-left:14%; margin-top: 1em"><b>all</b></p>

<p style="margin-left:17%;">Restore all <b>programs ck</b>
keeps track of.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;">$ ck restore all <br>
$ ck restore -p emacs</p>

<p style="margin-left:11%; margin-top: 1em"><b>Get help</b>
<br>
Get help for any given <b>action</b> from the command
line.</p>


<p style="margin-left:11%; margin-top: 1em"><b>USAGE</b></p>

<p style="margin-left:14%;"><b>ck help</b>
<i>action</i></p>


<p style="margin-left:11%; margin-top: 1em"><b>ALIASES</b></p>


<p style="margin-left:14%;"><b>help</b>,&nbsp;<b>h</b>,&nbsp;<b>&minus;&minus;help</b>,&nbsp;<b>-h</b>,&nbsp;<b>&minus;?</b></p>


<p style="margin-left:11%; margin-top: 1em"><b>ARGUMENTS</b></p>

<p style="margin-left:14%;"><i>action</i></p>

<p style="margin-left:17%;">Any <b>action alias</b> you
wish to get help for.</p>


<p style="margin-left:11%; margin-top: 1em"><b>EXAMPLES</b></p>

<p style="margin-left:14%;">$ ck help add <br>
$ ck h d <br>
$ ck --help ls</p>

<h2>EXIT STATUS
<a name="EXIT STATUS"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em"><b>ck</b> shall
return 0 if the action was completed without an error, -1
otherwise</p>

<h2>FILES
<a name="FILES"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em">By default
<b>ck</b> will store it&rsquo;s files in <i>~/.ck/</i>.
Using the <b>&minus;c</b>|<b>&minus;&minus;config</b> one
can change this.</p>

<p style="margin-left:11%; margin-top: 1em"><b>ck generated
files</b> <i><br>
~/.ck/ckrc</i></p>

<p style="margin-left:22%;">Store the configuration values
(<i>VERSION_CONTROL_DIR</i> and <i>SECRET_DIR</i>).</p>

<p style="margin-left:11%;"><i>~/.ck/ckdb</i></p>

<p style="margin-left:22%;">SQLite3 database.</p>

<p style="margin-left:11%; margin-top: 1em"><b>User
files</b> <i><br>
VERSION_CONTROL_DIR</i></p>

<p style="margin-left:22%;">This is where the configuration
files will end up by default. It&rsquo;s value is set with
the <b>init</b> action, but can be changed by editing
<i>ckrc</i>.</p>

<p style="margin-left:11%;"><i>SECRET_DIR</i></p>

<p style="margin-left:22%;">This is where the configuration
files will end up when adding them with the <b>-s</b> flag.
It&rsquo;s value is set with the <b>init</b> action, but can
be changed by editing <i>ckrc</i>.</p>

<h2>BUILD VALUES
<a name="BUILD VALUES"></a>
</h2>



<p style="margin-left:11%; margin-top: 1em"><b>compiler</b>:
@CMAKE_C_COMPILER@ <b><br>
flags</b>: @CMAKE_C_FLAGS@</p>

<h2>VERSION
<a name="VERSION"></a>
</h2>


<p style="margin-left:11%; margin-top: 1em">ck version
@ck_MAJOR_VERSION@.@ck_MINOR_VERSION@.@ck_PATCH_VERSION@</p>

<h2>AUTHOR
<a name="AUTHOR"></a>
</h2>

 
<p style="margin-left:11%; margin-top: 1em">gramanas</p>
<hr>
</body>
</html>
</div>
</div>
</div>
<div id="postamble" class="status">
<p class="date">Created: 2018-10-28 Sun 13:22</p>
<p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
</div>
</body>
</html>