-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw-data-sample.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 1385.
2140 lines (2140 loc) · 76 KB
/
raw-data-sample.csv
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
id,date,hour,command1,command2,command3,command4,command5
1,6/27/2018,23:31,ll
2,6/27/2018,23:32,kill,-0,lsyncd
3,6/27/2018,23:32,kill,-9,lsyncd
4,6/27/2018,23:32,ps,ax,|,grep,lsyncd
5,6/27/2018,23:32,kill,-9,17742
6,6/27/2018,23:33,ps,ax,|,grep,lsyncd
7,6/27/2018,23:33,kill,-9,17743
8,6/27/2018,23:33,ll
9,6/27/2018,23:33,ps,ax,|,grep,lsyncd
10,6/27/2018,23:38,pwd
11,6/27/2018,23:38,cd,~/src-try
12,6/27/2018,23:38,ll
13,6/27/2018,23:38,pwd
14,6/27/2018,23:38,clear
15,6/27/2018,23:39,ll
16,6/27/2018,23:39,subl,./lsyncd.log
17,6/27/2018,23:39,subl,./lsyncd.status
18,6/27/2018,23:40,tail,-f,/tmp/lsyncd.log
19,6/27/2018,23:40,tail,-f,/tmp/lsyncd.status
20,6/27/2018,23:40,kk
21,6/27/2018,23:40,clear
22,6/27/2018,23:40,ll
23,6/27/2018,23:40,clear
24,6/27/2018,23:40,ll
25,6/27/2018,23:41,cd,~/dst-try
26,6/27/2018,23:41,ll
27,6/27/2018,23:41,rm,*
28,6/27/2018,23:42,ll
29,6/27/2018,23:42,rm,./aaa.txt
30,6/27/2018,23:42,ll
31,6/27/2018,23:42,rm,./.*
32,6/27/2018,23:42,ll
33,6/27/2018,23:42,watch,ls,-la
34,6/27/2018,23:43,lsyncd,~/.config/lsyncd/simple-files.list
35,6/27/2018,23:43,lsyncd,~/.config/lsyncd/simple.lua
36,6/27/2018,23:45,ll
37,6/27/2018,23:45,echo,1>>aaa.txt
38,6/27/2018,23:48,pwd
39,6/27/2018,23:49,ps,ax,|,grep,lsyncd
40,6/27/2018,23:50,subl,/tmp/lsyncd.log
41,6/27/2018,23:50,tail,-f,/tmp/lsyncd.log
42,6/27/2018,23:50,subl,/tmp/lsyncd.status
43,6/27/2018,23:50,tail,-f,/tmp/lsyncd.log
44,6/27/2018,23:51,tail,-f,/tmp/lsyncd.status
45,6/27/2018,23:51,clear
46,6/27/2018,23:51,lsyncd,~/.config/lsyncd/simple.lua
47,6/27/2018,23:51,ll
48,6/27/2018,23:52,echo,1>>aaa.txt
49,6/27/2018,23:53,lsyncd,~/.config/lsyncd/simple.lua
50,6/27/2018,23:53,echo,1>>aaa.txt
51,6/27/2018,23:56,tail,-f,/tmp/lsyncd.log
52,6/27/2018,23:56,ps,ax,|,grep,lsyncd
53,6/27/2018,23:56,pkill,lsyncd
54,6/27/2018,23:57,ps,ax,|,grep,lsyncd
55,6/27/2018,23:57,ll
56,6/27/2018,23:58,rm,./lsyncd.log
57,6/27/2018,23:58,touch,lsyncd.log
58,6/27/2018,23:58,ll
59,6/27/2018,23:59,touch,lsyncd.log
60,6/27/2018,23:59,tail,-f,/tmp/lsyncd.log
61,6/27/2018,23:59,lsyncd,~/.config/lsyncd/simple.lua
62,6/27/2018,23:59,ll
63,6/27/2018,23:59,echo,12,>>aaa.txt
64,6/27/2018,23:59,echo,12,>>,aaa.txt
65,6/28/2018,00:01,pkill,lsyncd
66,6/28/2018,00:01,ps,ax,|,grep,lsyncd
67,6/28/2018,00:01,lsyncd,~/.config/lsyncd/simple.lua
68,6/28/2018,00:01,echo,133232,>>,aaa.txt
69,6/28/2018,00:02,echo,133232,>>,bb.txt
70,6/28/2018,00:04,echo,133232,>>,.tmux.conf
71,6/28/2018,00:05,echo,133232,>>,.zshrc
72,6/28/2018,00:19,lua
73,6/28/2018,00:25,ll
74,6/28/2018,00:29,ll
75,6/28/2018,00:30,ll
76,6/28/2018,00:30,subl,./lsyncd.log
77,6/28/2018,00:30,subl,./lsyncd.status
78,6/28/2018,00:30,tail,-f,/tmp/lsyncd.log
79,6/28/2018,00:31,tail,-f,/tmp/lsyncd.status
80,6/28/2018,00:31,clear
81,6/28/2018,00:31,ll
82,6/28/2018,00:32,lsyncd,~/.config/lsyncd/simple.lua
83,6/28/2018,00:44,ll
84,6/28/2018,00:44,echo,11111,>,cc.txt
85,6/28/2018,00:44,echo,11111,>,.zshrc
86,6/28/2018,00:46,echo,11111,>,.tmux.conf
87,6/28/2018,00:52,subl,./lsyncd.status
88,6/28/2018,00:53,tail,-f,/tmp/lsyncd.status
89,6/28/2018,00:53,ps,ax,|,grep,lsyncd
90,6/28/2018,00:53,kill,-9,8466
91,6/28/2018,00:53,pkill,lsyncd
92,6/28/2018,00:53,ps,ax,|,grep,lsyncd
93,6/28/2018,00:53,tail,-f,/tmp/lsyncd.log
94,6/28/2018,00:54,sublime,/tmp/lsyncd.log
95,6/28/2018,00:54,tail,-f,/tmp/lsyncd.log
96,6/28/2018,00:54,ll
97,6/28/2018,00:55,lsyncd,~/.config/lsyncd/simple.lua
98,6/28/2018,00:55,ll
99,6/28/2018,00:55,echo,2143344,>>,.zshrc
100,6/28/2018,00:56,echo,2143344,>>,a.txt
101,6/28/2018,00:57,pkill,lsyncd
102,6/28/2018,00:57,subl,./lsyncd.status
103,6/28/2018,00:57,subl,./lsyncd.log
104,6/28/2018,00:57,tail,-f,/tmp/lsyncd.log
105,6/28/2018,00:58,tail,-f,/tmp/lsyncd.status
106,6/28/2018,00:58,lsyncd,~/.config/lsyncd/simple.lua
107,6/28/2018,00:58,watch,ls,-la
108,6/28/2018,00:58,lsyncd,~/.config/lsyncd/simple.lua
109,6/28/2018,00:58,ll
110,6/28/2018,00:58,echo,1,>,a.txt
111,6/28/2018,00:59,ps,ax,|,grep,lsyncd
112,6/28/2018,00:59,echo,1,>,.tmux.conf
113,6/28/2018,01:00,echo,1,>,.zshrc
114,6/28/2018,01:05,ll
115,6/28/2018,01:05,cd,~/myGitRepositories
116,6/28/2018,01:05,ll
117,6/28/2018,01:05,cd,..
118,6/28/2018,01:05,l
119,6/28/2018,01:06,cd,~/myGitRepositories
120,6/28/2018,01:06,ll
121,6/28/2018,01:06,cd,..
122,6/28/2018,01:06,cd,my_useful_scripts
123,6/28/2018,01:06,ll
124,6/28/2018,01:06,cd,..
125,6/28/2018,01:06,ll
126,6/28/2018,01:06,cd,myGitRepositories
127,6/28/2018,01:06,ll
128,6/28/2018,01:06,ubuntu
129,6/28/2018,01:06,ll
130,6/28/2018,01:06,rm,-rf,./.*
131,6/28/2018,01:06,ll
132,6/28/2018,01:07,subl,./lsyncd.log
133,6/28/2018,01:07,subl,./lsyncd.status
134,6/28/2018,01:07,clear
135,6/28/2018,01:07,tail,-f,./lsyncd.status
136,6/28/2018,01:08,tail,-f,/tmp/lsyncd.log
137,6/28/2018,01:08,clear
138,6/28/2018,01:08,ll
139,6/28/2018,01:08,watch,ls,-la,--color
140,6/28/2018,01:09,ps,ax,|,grep,lsyncd
141,6/28/2018,01:09,kill,-9,11766
142,6/28/2018,01:09,kill,-9,11876
143,6/28/2018,01:10,ps,ax,|,grep,lsyncd
144,6/28/2018,01:10,lsyncd,~/.config/lsyncd/simple.lua
145,6/28/2018,01:10,ll
146,6/28/2018,01:11,subl,~/.zshrc
147,6/28/2018,01:12,ps,ax,|,grep,lsyncd
148,6/28/2018,01:12,kill,-9,lsyncd
149,6/28/2018,01:13,pkill,lsyncd
150,6/28/2018,01:13,ps,ax,|,grep,lsyncd
151,6/28/2018,01:13,lsyncd,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
152,6/28/2018,01:15,pkill,lsyncd
153,6/28/2018,01:15,ll
154,6/28/2018,01:15,rm,lsyncd.status
155,6/28/2018,01:16,touch,lsyncd.status
156,6/28/2018,01:16,subl,tmp/lsyncd.log
157,6/28/2018,01:16,ll
158,6/28/2018,01:16,touch,lsyncd.log
159,6/28/2018,01:16,ll
160,6/28/2018,01:16,subl,lsyncd.log
161,6/28/2018,01:18,clear
162,6/28/2018,01:18,l
163,6/28/2018,01:18,tail,-f,./lsyncd.log
164,6/28/2018,01:19,tail,-f,lsyncd.status
165,6/28/2018,01:19,ll
166,6/28/2018,01:19,rm,-rf,./.config
167,6/28/2018,01:19,ll
168,6/28/2018,01:20,lsyncd,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
169,6/28/2018,01:20,ll
170,6/28/2018,01:29,subl,lsyncd.status
171,6/28/2018,01:29,ll
172,6/28/2018,01:30,ps,ax,|,lsyncd
173,6/28/2018,01:30,ps,ax,|,grep,lsyncd
174,6/28/2018,01:31,subl,lsyncd.status
175,6/28/2018,07:25,cd,~/Do
176,6/28/2018,07:25,cd,~/Downloads
177,6/28/2018,07:25,ll
178,6/28/2018,07:25,cd,lsyncd
179,6/28/2018,07:25,ag,filter
180,6/28/2018,07:26,exit
181,6/28/2018,07:26,clear
182,6/28/2018,07:26,ll
183,6/28/2018,07:26,cd,~/Downloads
184,6/28/2018,07:26,ll
185,6/28/2018,07:26,cd,lsyncd
186,6/28/2018,07:26,ll
187,6/28/2018,07:26,ag,filter
188,6/28/2018,07:27,cd,tests
189,6/28/2018,07:27,ll
190,6/28/2018,07:27,subl,filter-rsync.lua
191,6/28/2018,07:45,ll
192,6/28/2018,07:45,lua,./filter-rsync.lua
193,6/28/2018,07:46,luarocks,install,luaposix
194,6/28/2018,07:49,dpkg,-L
195,6/28/2018,07:49,dpkg,-L,lua
196,6/28/2018,07:50,dpkg,-L,terminator
197,6/28/2018,07:50,dpkg,-L,LUA
198,6/28/2018,07:50,dpkg,-L,lua
199,6/28/2018,07:50,dpkg,--info,-L,lua
200,6/28/2018,07:50,sudo,apt,remove,luarocks
201,6/28/2018,07:51,cd,~/Downloads
202,6/28/2018,07:51,ll
203,6/28/2018,07:51,rm,-rf,./luarocks-2.4.4
204,6/28/2018,07:51,wget,https://luarocks.org/releases/luarocks-2.4.4.tar.gz
205,6/28/2018,07:52,ll
206,6/28/2018,07:52,rm,./luarocks-2.4.4.tar.gz
207,6/28/2018,07:52,rm,./luarocks-2.4.4.tar.gz.1
208,6/28/2018,07:52,ll
209,6/28/2018,07:52,wget,https://luarocks.org/releases/luarocks-2.4.4.tar.gz
210,6/28/2018,07:52,tar,zxpf,luarocks-2.4.4.tar.gz
211,6/28/2018,07:53,cd,luarocks-2.4.4
212,6/28/2018,07:53,ll
213,6/28/2018,07:53,./configure;,sudo,make,bootstrap
214,6/28/2018,07:53,sudo,luarocks,install,luasocket
215,6/28/2018,07:53,lua
216,6/28/2018,07:53,clear
217,6/28/2018,07:54,luarocks,install,luaposix
218,6/28/2018,07:54,sudo,luarocks,install,luaposix
219,6/28/2018,07:55,clear
220,6/28/2018,07:55,ll
221,6/28/2018,07:55,cd,..
222,6/28/2018,07:55,ll
223,6/28/2018,07:55,cd,try_again
224,6/28/2018,07:55,ll
225,6/28/2018,07:55,mv,./lsyncd,..
226,6/28/2018,07:55,mv,-rf,./lsyncd,..
227,6/28/2018,07:55,mv,-r,./lsyncd,..
228,6/28/2018,07:55,ll
229,6/28/2018,07:56,mv,./lsyncd,..
230,6/28/2018,07:56,cd,./lsyncd
231,6/28/2018,07:56,ll
232,6/28/2018,07:56,cd,tests
233,6/28/2018,07:56,ll
234,6/28/2018,07:56,lua,./filter-rsync.lua
235,6/28/2018,07:57,subl,./filter-rsync.lua
236,6/28/2018,07:57,cd,..
237,6/28/2018,07:57,ll
238,6/28/2018,07:57,lua,/tests/filter-rsync.lua
239,6/28/2018,07:57,lua,tests/filter-rsync.lua
240,6/28/2018,07:58,ll
241,6/28/2018,07:58,cd,/tmp/ltest.nbW/
242,6/28/2018,07:58,ll
243,6/28/2018,07:59,cat,./config.lua
244,6/28/2018,08:01,cd,-
245,6/28/2018,08:01,cd-
246,6/28/2018,08:01,cd,-
247,6/28/2018,08:01,ll
248,6/28/2018,08:02,cd,src
249,6/28/2018,08:02,ll
250,6/28/2018,08:03,cd,-
251,6/28/2018,08:04,exit
252,6/28/2018,08:04,clear
253,6/28/2018,08:04,ll
254,6/28/2018,08:04,cd,~/Downloads
255,6/28/2018,08:04,ll
256,6/28/2018,08:04,cd,lsyncd
257,6/28/2018,08:04,ll
258,6/28/2018,08:04,cd,tests
259,6/28/2018,08:04,ll
260,6/28/2018,08:06,clear
261,6/28/2018,08:06,ll
262,6/28/2018,08:06,clear
263,6/28/2018,08:06,ll
264,6/28/2018,08:06,cd,.
265,6/28/2018,08:06,cd,src
266,6/28/2018,08:06,ll
267,6/28/2018,08:06,lua,tests/filter-rsync.lua
268,6/28/2018,08:07,ll
269,6/28/2018,08:07,cd,..
270,6/28/2018,08:07,ll
271,6/28/2018,08:07,cd,..
272,6/28/2018,08:07,ll
273,6/28/2018,08:07,find,.,-name,"*zshrc*"
274,6/28/2018,08:07,sudo,find,.,-name,"*zshrc*"
275,6/28/2018,08:08,sudo,find,.,-name,"*abc*"
276,6/28/2018,08:08,cd,ltest.Pzc
277,6/28/2018,08:08,ll
278,6/28/2018,08:08,cd,src
279,6/28/2018,08:08,ll
280,6/28/2018,08:08,cd,..
281,6/28/2018,08:08,cd,ltest.nbW
282,6/28/2018,08:08,ll
283,6/28/2018,08:08,cd,src
284,6/28/2018,08:08,ll
285,6/28/2018,08:08,lua,tests/filter-rsync.lua
286,6/28/2018,08:08,ll
287,6/28/2018,08:09,cd,..
288,6/28/2018,08:09,ll
289,6/28/2018,08:09,cd,..
290,6/28/2018,08:09,ll
291,6/28/2018,08:09,cd,ltest.Dwm
292,6/28/2018,08:09,ll
293,6/28/2018,08:09,cd,src
294,6/28/2018,08:09,ll
295,6/28/2018,08:09,lua,tests/filter-rsync.lua
296,6/28/2018,08:10,cd,..ll
297,6/28/2018,08:10,cd,..
298,6/28/2018,08:10,ll
299,6/28/2018,08:10,cd,try_again
300,6/28/2018,08:10,ll
301,6/28/2018,08:10,lua,tests/filter-rsync.lua
302,6/28/2018,08:10,cd,lsyncd
303,6/28/2018,08:10,lua,tests/filter-rsync.lua
304,6/28/2018,08:10,cd,..
305,6/28/2018,08:10,ll
306,6/28/2018,08:11,cd,ltest.PgD
307,6/28/2018,08:11,ll
308,6/28/2018,08:11,cd,src
309,6/28/2018,08:11,ll
310,6/28/2018,08:11,cd,..
311,6/28/2018,08:11,cd,.
312,6/28/2018,08:11,ll
313,6/28/2018,08:11,cd,..
314,6/28/2018,08:11,ll
315,6/28/2018,08:11,rm,"ltest*"
316,6/28/2018,08:11,rm,-rf,"ltest*"
317,6/28/2018,08:11,ll
318,6/28/2018,08:11,rm,-rf,"ltest.*"
319,6/28/2018,08:11,ll
320,6/28/2018,08:12,rm,-rf,"ltest\*"
321,6/28/2018,08:12,ll
322,6/28/2018,08:12,rm,-rf,ltest\*
323,6/28/2018,08:12,ll
324,6/28/2018,08:12,rm,-rf,ltest*
325,6/28/2018,08:12,ll
326,6/28/2018,08:12,lua,tests/filter-rsync.lua
327,6/28/2018,08:12,ll
328,6/28/2018,08:12,cd,ltest.MVH
329,6/28/2018,08:12,ll
330,6/28/2018,08:12,cd,src
331,6/28/2018,08:12,ll
332,6/28/2018,08:13,clear
333,6/28/2018,08:13,cd,..
334,6/28/2018,08:13,ll
335,6/28/2018,08:13,rm,-rf,./ltest.MVH
336,6/28/2018,08:13,ll
337,6/28/2018,08:13,lua,tests/filter-rsync.lua
338,6/28/2018,08:13,ll
339,6/28/2018,08:13,cd,ltest.Qb6
340,6/28/2018,08:13,l
341,6/28/2018,08:13,cd,src
342,6/28/2018,08:13,ll
343,6/28/2018,08:15,cd,..
344,6/28/2018,08:15,ll
345,6/28/2018,08:15,cd,..
346,6/28/2018,08:15,ll
347,6/28/2018,08:15,rm,ltest.Qb6
348,6/28/2018,08:15,rm,-rf,ltest.Qb6
349,6/28/2018,08:15,ll
350,6/28/2018,08:15,lua,tests/filter-rsync.lua
351,6/28/2018,08:16,ll
352,6/28/2018,08:16,cd,ltest.vN3
353,6/28/2018,08:16,ll
354,6/28/2018,08:16,cd,src
355,6/28/2018,08:16,ll
356,6/28/2018,08:16,cd,..
357,6/28/2018,08:16,ll
358,6/28/2018,08:16,cd,trg
359,6/28/2018,08:16,ll
360,6/28/2018,08:16,cd,..src
361,6/28/2018,08:16,cd,../src
362,6/28/2018,08:16,ll
363,6/28/2018,08:17,cd,..
364,6/28/2018,08:17,ll
365,6/28/2018,08:18,cd,src
366,6/28/2018,08:18,ll
367,6/28/2018,08:18,cd,..
368,6/28/2018,08:18,ll
369,6/28/2018,08:18,cd,..
370,6/28/2018,08:18,rm,./ltest.vN3
371,6/28/2018,08:18,rm,--rf,./ltest.vN3
372,6/28/2018,08:18,rm,-rf,./ltest.vN3
373,6/28/2018,08:18,ll
374,6/28/2018,08:19,clear
375,6/28/2018,08:19,ll
376,6/28/2018,08:19,clear
377,6/28/2018,08:19,ll
378,6/28/2018,08:19,pwd
379,6/28/2018,08:20,lua,tests/filter-rsync.lua
380,6/28/2018,08:20,kk
381,6/28/2018,08:20,ll
382,6/28/2018,08:20,cll
383,6/28/2018,08:20,ll
384,6/28/2018,08:20,cd,ltest.aIA
385,6/28/2018,08:20,ll
386,6/28/2018,08:20,cd,src
387,6/28/2018,08:20,ll
388,6/28/2018,08:20,cd,..
389,6/28/2018,08:20,cd,trg
390,6/28/2018,08:20,ll
391,6/28/2018,08:21,pwd
392,6/28/2018,08:21,cd,..
393,6/28/2018,08:21,ll
394,6/28/2018,08:21,rm,-rf,./ltest.aIA
395,6/28/2018,08:21,ll
396,6/28/2018,08:22,lua,tests/filter-rsync.lua
397,6/28/2018,08:22,ll
398,6/28/2018,08:22,cd,ltest.lYM
399,6/28/2018,08:22,ll
400,6/28/2018,08:22,cd,src
401,6/28/2018,08:22,ll
402,6/28/2018,08:22,cd,..
403,6/28/2018,08:22,cd,trg
404,6/28/2018,08:22,ll
405,6/28/2018,08:23,cd,..
406,6/28/2018,08:23,ll
407,6/28/2018,08:23,rm,-rf,./ltest.lYM
408,6/28/2018,08:23,lua,tests/filter-rsync.lua
409,6/28/2018,08:23,ll
410,6/28/2018,08:23,cd,ltest.wb6
411,6/28/2018,08:23,ll
412,6/28/2018,08:23,cd,trg
413,6/28/2018,08:23,ll
414,6/28/2018,08:23,cd,/tmp
415,6/28/2018,08:24,find,.,-name,zshrc
416,6/28/2018,08:24,sudo,find,.,-name,zshrc
417,6/28/2018,08:25,pwd
418,6/28/2018,08:25,ll
419,6/28/2018,08:25,cd,ltest.wb6
420,6/28/2018,08:25,ll
421,6/28/2018,08:25,cd,src
422,6/28/2018,08:25,ll
423,6/28/2018,08:25,cd,..
424,6/28/2018,08:25,ll
425,6/28/2018,08:25,lsyncd,/tmp/ltest.wb6/config.lua
426,6/28/2018,08:26,ll
427,6/28/2018,08:26,cd,src
428,6/28/2018,08:26,ll
429,6/28/2018,08:26,cd,..
430,6/28/2018,08:26,cd,dst
431,6/28/2018,08:26,ll
432,6/28/2018,08:26,cd,trg
433,6/28/2018,08:26,ll
434,6/28/2018,08:27,ll
435,6/28/2018,08:27,cd,..
436,6/28/2018,08:27,cd,.
437,6/28/2018,08:27,ll
438,6/28/2018,08:27,cd,.
439,6/28/2018,08:27,cd,..
440,6/28/2018,08:27,ll
441,6/28/2018,08:27,rm,./ltest.wb6
442,6/28/2018,08:27,rm,-rf,./ltest.wb6
443,6/28/2018,08:27,clear
444,6/28/2018,08:27,ll
445,6/28/2018,08:27,lua,tests/filter-rsync.lua
446,6/28/2018,08:27,ll
447,6/28/2018,08:27,cd,ltest.RL0
448,6/28/2018,08:27,ll
449,6/28/2018,08:28,cd,src
450,6/28/2018,08:28,ll
451,6/28/2018,08:28,lsyncd,/tmp/ltest.RL0/config.lua
452,6/28/2018,08:30,cd,..
453,6/28/2018,08:30,ll
454,6/28/2018,08:30,cd,,,
455,6/28/2018,08:30,cd,.
456,6/28/2018,08:30,cd,..
457,6/28/2018,08:30,rm,-rf,./ltest.RL0
458,6/28/2018,08:30,lua,tests/filter-rsync.lua
459,6/28/2018,08:30,ll
460,6/28/2018,08:30,cd,ltest.6XE
461,6/28/2018,08:31,lsyncd,/tmp/ltest.6XE/config.lua
462,6/28/2018,08:31,cd,trg
463,6/28/2018,08:31,ll
464,6/28/2018,08:31,exit
465,6/28/2018,08:31,cd,../..
466,6/28/2018,08:31,ll
467,6/28/2018,08:32,rm,-rf,ltest.6XE
468,6/28/2018,08:32,ll
469,6/28/2018,08:33,lua,tests/filter-rsync.lua
470,6/28/2018,08:33,lsyncd,/tmp/ltest.6XE/config.lua
471,6/28/2018,08:33,ll
472,6/28/2018,08:33,cd,ltest.13o
473,6/28/2018,08:33,lsyncd,/tmp/ltest.13o/config.lua
474,6/28/2018,08:33,cd,trg
475,6/28/2018,08:33,ll
476,6/28/2018,08:34,ls,-la,~
477,6/28/2018,08:34,cd,..
478,6/28/2018,08:34,cd,-
479,6/28/2018,08:34,ll
480,6/28/2018,08:34,cd,..
481,6/28/2018,08:34,ll
482,6/28/2018,08:34,cd,src
483,6/28/2018,08:34,ll
484,6/28/2018,08:35,echo,e43r2,>,abc
485,6/28/2018,08:35,cd,..
486,6/28/2018,08:35,cd,trg
487,6/28/2018,08:35,ll
488,6/28/2018,08:35,cd,-
489,6/28/2018,08:40,cd,..
490,6/28/2018,08:40,ll
491,6/28/2018,08:40,rm,-rf,ltest.13o
492,6/28/2018,08:40,ll
493,6/28/2018,08:40,ps,ax,|
494,6/28/2018,08:40,ps,ax,|,gre[,lsyncd
495,6/28/2018,08:40,ps,ax,|,grep,lsyncd
496,6/28/2018,08:40,kill,-9,20200
497,6/28/2018,08:40,ps,ax,|,grep,lsyncd
498,6/28/2018,08:40,clear
499,6/28/2018,08:41,ll
500,6/28/2018,08:41,lua,tests/filter-rsync.lua
501,6/28/2018,08:41,ll
502,6/28/2018,08:41,cd,ltest.AkU
503,6/28/2018,08:41,ll
504,6/28/2018,08:41,cd,src
505,6/28/2018,08:41,ll
506,6/28/2018,08:41,lsyncd,/tmp/ltest.AkU/config.lua
507,6/28/2018,08:41,ll
508,6/28/2018,08:41,cd,..
509,6/28/2018,08:41,ll
510,6/28/2018,08:41,cd,trg
511,6/28/2018,08:42,ll
512,6/28/2018,08:42,cd,..
513,6/28/2018,08:42,ll
514,6/28/2018,08:42,rm,-rf,./ltest.AkU
515,6/28/2018,08:42,ll
516,6/28/2018,08:42,clear
517,6/28/2018,08:42,ll
518,6/28/2018,08:45,ps,ax,lsyncd
519,6/28/2018,08:45,ps,ax,|,grep,lsyncd
520,6/28/2018,08:45,ll
521,6/28/2018,08:45,clear
522,6/28/2018,08:45,ll
523,6/28/2018,08:46,cd,~/myGitRepositories/customized-workspace/Ubuntu
524,6/28/2018,08:46,ll
525,6/28/2018,08:46,rm,-rf,*
526,6/28/2018,08:46,ll
527,6/28/2018,08:46,rm,-rf,./.*
528,6/28/2018,08:46,ll
529,6/28/2018,08:46,lsync,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
530,6/28/2018,08:47,lsyncd,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
531,6/28/2018,08:47,ps,ax,|,grep,lsyncd
532,6/28/2018,08:47,ubuntu
533,6/28/2018,08:47,ll
534,6/28/2018,08:48,watch,ls,la,--color
535,6/28/2018,08:48,watch,ls,-la,--color
536,6/28/2018,08:48,cd,~/
537,6/28/2018,08:48,l
538,6/28/2018,08:49,toch,blabla
539,6/28/2018,08:49,touch,blabla
540,6/28/2018,08:58,ps,ax,|,grep,lsyncd
541,6/28/2018,08:58,kill,-9,8005
542,6/28/2018,08:58,ll
543,6/28/2018,08:59,ps,ax,|,grep,lsyncd
544,6/28/2018,08:59,ll
545,6/28/2018,08:59,rm,rf,*
546,6/28/2018,08:59,ll
547,6/28/2018,08:59,rm,-rf,.=*
548,6/28/2018,08:59,rm,-rf,.*
549,6/28/2018,08:59,ll
550,6/28/2018,08:59,clear
551,6/28/2018,08:59,ll
552,6/28/2018,09:01,reboot
553,6/28/2018,09:12,tmuxinator,android-setup
554,6/28/2018,09:12,mpsyt
555,6/28/2018,09:12,cd,~/.AndroidStudio3.1/system/log,&&,cat,./idea.log,|,grep,error
556,6/28/2018,09:12,cd,~/AndroidStudioProjects
557,6/28/2018,09:12,cd,/home/gil_diy
558,6/28/2018,09:12,adb,shell
559,6/28/2018,09:12,ps,ax
560,6/28/2018,09:15,ps,ax,|,grep,lsyncd
561,6/28/2018,09:15,sublime,~/.config/lsyncd
562,6/28/2018,09:16,sublime,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
563,6/28/2018,09:17,lsyncd,--version
564,6/28/2018,09:20,lsyncd,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
565,6/28/2018,09:20,ubuntu
566,6/28/2018,09:20,ll
567,6/28/2018,09:20,cd,.config
568,6/28/2018,09:20,ll
569,6/28/2018,09:20,cd,lsyncd
570,6/28/2018,09:20,ll
571,6/28/2018,09:20,subl,./backup-my-conf-and-dot-files.lua
572,6/28/2018,09:21,subl,~/.config/lsyncd/backup-my-conf-and-dot-files.lua
573,6/28/2018,09:21,lua,--version
574,6/28/2018,09:21,lua,--v
575,6/28/2018,09:22,lua,-v
576,6/28/2018,09:23,ll
577,6/28/2018,09:23,ag,using
578,6/28/2018,09:23,cdg
579,6/28/2018,09:23,cd,..
580,6/28/2018,09:23,cd,.
581,6/28/2018,09:23,cd,..
582,6/28/2018,09:23,ll
583,6/28/2018,09:23,git,status
584,6/28/2018,09:24,ll
585,6/28/2018,09:24,cd,Ubuntu
586,6/28/2018,09:24,ll
587,6/28/2018,09:24,cd,.config
588,6/28/2018,09:24,ll
589,6/28/2018,09:24,cd,lsyncd
590,6/28/2018,09:24,ll
591,6/28/2018,09:24,rm,./simple.lua
592,6/28/2018,09:24,ll
593,6/28/2018,09:24,rm,./files.list
594,6/28/2018,09:24,ll
595,6/28/2018,09:24,rm,./simple-files.list
596,6/28/2018,09:24,ll
597,6/28/2018,09:25,cd,.....
598,6/28/2018,09:25,xs,customized-workspace
599,6/28/2018,09:25,ll
600,6/28/2018,09:25,cd,customized-workspace
601,6/28/2018,09:25,ll
602,6/28/2018,09:25,git,status
603,6/28/2018,09:25,git,add,.
604,6/28/2018,09:26,git,commit,-m,"lua,script,was,updated,thanks,to,a,new,cutting,edge,feature,in,lsyncd,:),",.
605,6/28/2018,09:26,git,push
606,6/28/2018,09:30,ll
607,6/28/2018,09:30,cd,Ubuntu
608,6/28/2018,09:30,l
609,6/28/2018,09:30,ll
610,6/28/2018,09:30,cd,.config
611,6/28/2018,09:30,ll
612,6/28/2018,09:30,cd,..
613,6/28/2018,09:30,cd,-
614,6/28/2018,09:30,cd,lsyncd
615,6/28/2018,09:30,ll
616,6/28/2018,09:30,cd,....
617,6/28/2018,09:31,git,status
618,6/28/2018,09:33,cd,/etc/
619,6/28/2018,09:34,sublime,./init.d/lsyncd
620,6/28/2018,09:36,cd,/var
621,6/28/2018,09:36,cd,lo
622,6/28/2018,09:36,cd,log
623,6/28/2018,09:36,ll
624,6/28/2018,09:36,ag,lsyncd
625,6/28/2018,09:47,/etc/init.d/lsyncd,start
626,6/28/2018,09:47,ps,ax,|,grep,lsyncd
627,6/28/2018,09:48,kill,-9,6527
628,6/28/2018,09:48,clear
629,6/28/2018,09:48,ps,ax,|,grep,lsyncd
630,6/28/2018,09:48,/etc/init.d/lsyncd,start
631,6/28/2018,09:48,ps,ax,|,grep,lsyncd
632,6/28/2018,09:49,cd,/etc/init.d
633,6/28/2018,09:49,ll,|,grep,lsyncd
634,6/28/2018,09:50,sudo,subl,./lsyncd
635,6/28/2018,09:50,/etc/init.d/lsyncd,start
636,6/28/2018,09:50,sudo,/etc/init.d/lsyncd,start
637,6/28/2018,09:50,ps,ax,|,grep,lsyncd
638,6/28/2018,09:51,sudo,kill,-9,15538
639,6/28/2018,09:51,clear
640,6/28/2018,09:51,ll
641,6/28/2018,09:51,clear
642,6/28/2018,09:51,ll
643,6/28/2018,09:52,clear
644,6/28/2018,09:52,ll
645,6/28/2018,09:52,sudo,/etc/init.d/lsyncd,start
646,6/28/2018,09:52,cd,/etc
647,6/28/2018,09:52,ag,72732355751824
648,6/28/2018,09:52,sudo,ag,72732355751824
649,6/28/2018,09:54,sudo,subl,/etc/init.d/lsyncd
650,6/28/2018,09:55,ps,ax,|,grep,lsyncd
651,6/28/2018,09:55,sudo,kill,-9,17085
652,6/28/2018,09:55,clear
653,6/28/2018,09:55,ll
654,6/28/2018,09:55,ps,ax,|,grep,lsyncd
655,6/28/2018,09:55,sudo,/etc/init.d/lsyncd,start
656,6/28/2018,09:55,ps,ax,|,grep,lsyncd
657,6/28/2018,09:56,sudo,subl,/etc/init.d/lsyncd
658,6/28/2018,09:57,ps,ax,|,grep,lsyncd
659,6/28/2018,09:57,sudo,/etc/init.d/lsyncd,start
660,6/28/2018,09:57,cd,~
661,6/28/2018,09:57,ll,|,grep,gil
662,6/28/2018,09:57,ll,|,grep,gil_log
663,6/28/2018,09:58,sudo,sh,/etc/init.d/lsyncd,start
664,6/28/2018,09:58,ll,|,grep,gil_log
665,6/28/2018,09:58,ps,ax,|,grep,lsyncd
666,6/28/2018,09:58,sudo,sh,/etc/init.d/lsyncd
667,6/28/2018,09:59,ps,ax,|,grep,lsyncd
668,6/28/2018,10:01,ll
669,6/28/2018,10:02,ll,|,grep,gil_log
670,6/28/2018,10:02,ll,|,grep,gil_log.txt
671,6/28/2018,10:02,sudo,/etc/init.d/lsyncd,start
672,6/28/2018,10:03,which,sh
673,6/28/2018,10:04,sudo,/etc/init.d/lsyncd,start
674,6/28/2018,10:04,ps,ax,|,grep,lsyncd
675,6/28/2018,10:05,sudo,sh,/etc/init.d/lsyncd
676,6/28/2018,10:05,ps,ax,|,grep,lsyncd
677,6/28/2018,10:05,sudo,sh,/etc/init.d/lsyncd
678,6/28/2018,10:06,which,lsyncd
679,6/28/2018,10:07,sudo,/etc/init.d/lsyncd,start
680,6/28/2018,10:07,ps,ax,|,grep,lsyncd
681,6/28/2018,10:08,systemctl,daemon-reload'
682,6/28/2018,10:08,systemctl,daemon-reload
683,6/28/2018,10:08,sudo,/etc/init.d/lsyncd,start
684,6/28/2018,10:08,ps,ax,|,grep,lsyncd
685,6/28/2018,10:08,sudo,/etc/init.d/lsyncd,start
686,6/28/2018,10:09,systemctl,daemon-reload
687,6/28/2018,10:09,sudo,/etc/init.d/lsyncd,start
688,6/28/2018,10:09,ps,ax,|,grep,lsyncd
689,6/28/2018,10:11,sudo,/etc/init.d/lsyncd,start
690,6/28/2018,10:11,systemctl,daemon-reload
691,6/28/2018,10:11,sudo,/etc/init.d/lsyncd,start
692,6/28/2018,10:11,ps,ax,|,grep,lsyncd
693,6/28/2018,10:12,sudo,/etc/init.d/lsyncd,start
694,6/28/2018,10:12,systemctl,daemon-reload
695,6/28/2018,10:12,sudo,/etc/init.d/lsyncd,start
696,6/28/2018,10:13,cd,/etc
697,6/28/2018,10:13,ag,Startingggg
698,6/28/2018,10:13,cd,/var
699,6/28/2018,10:13,ag,Startingggg
700,6/28/2018,10:13,sudo,ag,Startingggg
701,6/28/2018,10:15,sudo,/etc/init.d/lsyncd,start
702,6/28/2018,10:15,systemctl,daemon-reload
703,6/28/2018,10:15,sudo,/etc/init.d/lsyncd,start
704,6/28/2018,10:15,ag,Gil_have_you_found_log
705,6/28/2018,10:15,sudo,ag,Gil_have_you_found_log
706,6/28/2018,10:16,cd,/
707,6/28/2018,10:16,sudo,ag,Gil_have_you_found_log
708,6/28/2018,10:17,systemctl,daemon-reload
709,6/28/2018,10:17,sudo,/etc/init.d/lsyncd,start
710,6/28/2018,10:19,sublime,/lib/lsb/init-functions
711,6/28/2018,10:21,sublime,init.d/lsyncd
712,6/28/2018,10:21,sudo,sublime,init.d/lsyncd
713,6/28/2018,10:22,exit
714,6/28/2018,10:26,tmuxinator,android-setup
715,6/28/2018,10:26,cd,~/.AndroidStudio3.1/system/log,&&,cat,./idea.log,|,grep,error
716,6/28/2018,10:26,cd,/home/gil_diy
717,6/28/2018,10:26,cd,~/AndroidStudioProjects
718,6/28/2018,10:26,adb,shell
719,6/28/2018,10:26,mpsyt
720,6/28/2018,10:27,ag,"cd,/home/gil_diy"
721,6/28/2018,10:27,clear
722,6/28/2018,10:27,ll
723,6/28/2018,10:28,cd,.tmux
724,6/28/2018,10:28,ll
725,6/28/2018,10:28,cd,plugins
726,6/28/2018,10:28,ll
727,6/28/2018,10:28,cd,~
728,6/28/2018,10:28,pwd
729,6/28/2018,10:28,ll
730,6/28/2018,10:29,ps,ax,|,grep,lsync
731,6/28/2018,10:29,pwd
732,6/28/2018,10:29,ll
733,6/28/2018,10:29,pwd
734,6/28/2018,10:30,ubuntu
735,6/28/2018,10:30,ll
736,6/28/2018,10:30,sublime,~/.zshrc
737,6/28/2018,10:32,ll
738,6/28/2018,10:52,git,status
739,6/28/2018,10:53,cd,~/.config/lsyncd
740,6/28/2018,10:53,ll
741,6/28/2018,10:54,rm,./files.list,./simple-files.list
742,6/28/2018,10:54,subl,./simple.lua
743,6/28/2018,10:54,ll
744,6/28/2018,10:54,cd,-
745,6/28/2018,10:54,ll
746,6/28/2018,10:55,git,status
747,6/28/2018,10:55,cd,.config/lsyncd
748,6/28/2018,10:55,ll
749,6/28/2018,10:55,git,add,.zshrc
750,6/28/2018,10:55,ll
751,6/28/2018,10:55,cd,...
752,6/28/2018,10:55,cd,..
753,6/28/2018,10:56,git,status
754,6/28/2018,10:56,git,add,Ubuntu/.config/lsyncd/simple.lua
755,6/28/2018,10:57,commit,-m,"A,lua,script,I,wrote,demostrating,inlet,fucntionality",Ubuntu/.config/lsyncd/simple.lua
756,6/28/2018,10:57,git,commit,-m,"A,lua,script,I,wrote,demostrating,inlet,fucntionality",Ubuntu/.config/lsyncd/simple.lua
757,6/28/2018,10:57,git,add,Ubuntu/.zshrc
758,6/28/2018,10:58,subl,/etc/init.d/lsyncd
759,6/28/2018,11:01,mkdir,~/.config/lsyncd/init_script
760,6/28/2018,11:01,cp,/etc/init.d/lsyncd,~/.config/lsyncd/init_script
761,6/28/2018,11:01,cd,-
762,6/28/2018,11:01,ll
763,6/28/2018,11:01,cd,~/.config/lsyncd/init_script
764,6/28/2018,11:01,subl,./lsyncd
765,6/28/2018,11:12,ubuntu
766,6/28/2018,11:12,ll
767,6/28/2018,11:12,git,status
768,6/28/2018,11:13,cd,.config/lsyncd/init_script
769,6/28/2018,11:13,ll
770,6/28/2018,11:13,cat,./lsyncd
771,6/28/2018,11:13,head,./lsyncd
772,6/28/2018,11:13,git,status
773,6/28/2018,11:13,cd,ubu
774,6/28/2018,11:13,ubuntu
775,6/28/2018,11:13,ll
776,6/28/2018,11:13,git,status
777,6/28/2018,11:14,diff,./.zshrc
778,6/28/2018,11:14,git,add,.config/lsyncd/init_script/
779,6/28/2018,11:14,pwd
780,6/28/2018,11:16,git,commit,-m,"lsyncd,-,Startup,script,for,systemd,was,added",.config/lsyncd/init_script/
781,6/28/2018,11:16,git,push
782,6/28/2018,11:18,ll
783,6/28/2018,11:18,watch
784,6/28/2018,11:18,watch,--color,-ls,-la,--color
785,6/28/2018,11:18,watch,--color,ls,-la,--color
786,6/28/2018,11:20,clear
787,6/28/2018,11:20,ll
788,6/28/2018,12:05,tesseract,--version
789,6/28/2018,12:05,cd,~
790,6/28/2018,12:05,ll
791,6/28/2018,12:05,cd,src-try
792,6/28/2018,12:05,ll
793,6/28/2018,12:05,cd,..
794,6/28/2018,12:05,ll
795,6/28/2018,12:06,mkdir,playground_for_lsyncd
796,6/28/2018,12:06,mv,-rf,./src-try,./playground_for_lsyncd
797,6/28/2018,12:06,mv,./src-try,./playground_for_lsyncd
798,6/28/2018,12:06,mv,./dst-try,./playground_for_lsyncd
799,6/28/2018,12:06,clear
800,6/28/2018,12:06,ll
801,6/28/2018,12:06,cd,Videos
802,6/28/2018,12:06,ll
803,6/28/2018,12:07,cd,..
804,6/28/2018,12:07,ll
805,6/28/2018,12:07,cd,Pictures
806,6/28/2018,12:07,ll
807,6/28/2018,12:07,cd,..
808,6/28/2018,12:07,ll
809,6/28/2018,12:07,cd,~/Downloads
810,6/28/2018,12:07,lll
811,6/28/2018,12:07,ll
812,6/28/2018,12:07,l
813,6/28/2018,12:07,cd,opencv-3.4.1
814,6/28/2018,12:07,ll
815,6/28/2018,12:07,cd,..
816,6/28/2018,12:07,ll
817,6/28/2018,12:08,cd,..
818,6/28/2018,12:08,ll
819,6/28/2018,12:08,find,.,-name,*.JPG
820,6/28/2018,12:08,find,.,-name,"*.JPG"
821,6/28/2018,12:08,find,.,-name,"*.kpg"
822,6/28/2018,12:08,find,.,-name,"*.jpg"
823,6/28/2018,12:09,cd,./AndroidStudioProjects/AndroidTessTwoOCR/filesResidesOnAndroideDevice/files/Pictures
824,6/28/2018,12:09,ll
825,6/28/2018,12:09,display,./JPEG_20180626_
826,6/28/2018,12:09,display,./JPEG_20180626_001720_-1069945931.jpg
827,6/28/2018,12:10,subl,~/.zshrc
828,6/28/2018,12:10,source,~/.zshrc
829,6/28/2018,12:10,dis,./JPEG_20180626_001720_-1069945931.jpg
830,6/28/2018,12:11,exif
831,6/28/2018,12:13,xeif
832,6/28/2018,12:13,apt-cache,search,xeif
833,6/28/2018,12:14,apt-cache,search,*xeif*
834,6/28/2018,12:14,apt-cache,search,"*xeif*"
835,6/28/2018,12:14,apt-cache,search,"*x*"
836,6/28/2018,12:14,apt-cache,search,git
837,6/28/2018,12:14,apt-cache,search,xi
838,6/28/2018,12:14,apt-cache,search,xief
839,6/28/2018,12:14,apt-cache,search,xie
840,6/28/2018,12:14,apt-cache,search,exif
841,6/28/2018,12:17,python,-v
842,6/28/2018,12:17,clear
843,6/28/2018,12:17,python,-v
844,6/28/2018,12:17,python,--Version
845,6/28/2018,12:17,python,--version
846,6/28/2018,12:17,apt-cache,search,exif
847,6/28/2018,12:19,apt-cache,show,python3-exif
848,6/28/2018,12:20,apt-cache,show,python3-exif,|,grep,date
849,6/28/2018,12:20,clear
850,6/28/2018,12:21,pip,install,exifread
851,6/28/2018,12:21,pip,install,exifread,--user
852,6/28/2018,12:22,pip,install,exifread
853,6/28/2018,12:22,EXIF.py
854,6/28/2018,12:22,clear
855,6/28/2018,12:22,ll
856,6/28/2018,12:22,EXIF.py,./JPEG_20180626_001618_1713557258.jpg
857,6/28/2018,12:25,ll
858,6/28/2018,12:25,cd,..
859,6/28/2018,12:25,ll
860,6/28/2018,12:25,mkdir,~/playground_for_OCR
861,6/28/2018,12:25,ll
862,6/28/2018,12:25,cp,-r,./Pictures,~/playground_for_OCR
863,6/28/2018,12:26,cd,-r,./Pictures
864,6/28/2018,12:26,ll
865,6/28/2018,12:26,cd,~/playground_for_
866,6/28/2018,12:26,cd,~/playground_for_OCR
867,6/28/2018,12:26,ll
868,6/28/2018,12:26,mv,./Pictures,mySmartphoneShots
869,6/28/2018,12:26,ll
870,6/28/2018,12:27,mkdir,niceOCRPhotos
871,6/28/2018,12:27,ll
872,6/28/2018,12:27,mv,./niceOCRPhotos,./niceOCR
873,6/28/2018,12:27,ll
874,6/28/2018,12:27,cd,niceOCR
875,6/28/2018,12:27,ll
876,6/28/2018,12:30,source,~/.zshrc
877,6/28/2018,12:31,exif
878,6/28/2018,12:31,ll
879,6/28/2018,12:31,pwd
880,6/28/2018,12:32,wget,-nd,-r,-P,.,-A,jpeg,jpg,bmp,gif,png,https://www.learnopencv.com/deep-learning-based-text-recognition-ocr-using-tesseract-and-opencv/
881,6/28/2018,12:36,ll
882,6/28/2018,12:37,dis,*
883,6/28/2018,12:38,rm,./AlexNet-1.png
884,6/28/2018,12:38,rm,./AlexNet-Resize-Crop-Input.jpg
885,6/28/2018,12:38,dis,*
886,6/28/2018,12:38,ll
887,6/28/2018,12:38,rm,./coco-mpi-keypoints.png
888,6/28/2018,12:38,ll
889,6/28/2018,12:38,dis,./*
890,6/28/2018,12:39,rm,computer-vision-for-faces.png
891,6/28/2018,12:39,dis,./*
892,6/28/2018,12:39,ll
893,6/28/2018,12:39,dis,confidence-left-shoulder.jpg
894,6/28/2018,12:39,rm,confidence-left-shoulder.jpg
895,6/28/2018,12:39,clear
896,6/28/2018,12:39,ll
897,6/28/2018,12:39,dis,OpenPose-683x1024.jpg
898,6/28/2018,12:40,rm,OpenPose*
899,6/28/2018,12:40,clear
900,6/28/2018,12:40,ll
901,6/28/2018,12:40,dis,./mpi-points.jpg
902,6/28/2018,12:40,rm,./mpi-points.jpg
903,6/28/2018,12:40,ll
904,6/28/2018,12:41,dis,openpose-body-architecture-1024x291.png
905,6/28/2018,12:41,dis,openpose-dance.gif
906,6/28/2018,12:41,rm,openpose-*
907,6/28/2018,12:41,ll
908,6/28/2018,12:41,dis,cropped-favicon-512x512-180x180.png
909,6/28/2018,12:42,rm,./cropped-favicon-512x512-*
910,6/28/2018,12:42,ll
911,6/28/2018,12:42,dis,mpi-points-683x1024.jpg
912,6/28/2018,12:42,rm,mpi-points-683x1024.jpg
913,6/28/2018,12:42,ll
914,6/28/2018,12:42,dis,ReluNonlinearity.png
915,6/28/2018,12:43,rm,./ReluNonlinearity.png
916,6/28/2018,12:43,ll
917,6/28/2018,12:43,rm,./ro
918,6/28/2018,12:43,rm,./robots.txt.tmp
919,6/28/2018,12:43,ll
920,6/28/2018,12:43,display,*
921,6/28/2018,12:43,rm,./heatmap-left-shoulder.jpg
922,6/28/2018,12:43,ll
923,6/28/2018,12:44,dis,./road-sign-3-300x112.jpg
924,6/28/2018,12:44,clear
925,6/28/2018,12:44,ll
926,6/28/2018,12:44,cd,~/playground_for_
927,6/28/2018,12:44,cd,playground_for_OCR
928,6/28/2018,12:44,ll
929,6/28/2018,12:44,clear
930,6/28/2018,12:44,ll
931,6/28/2018,12:44,cd,mySmartphoneShots
932,6/28/2018,12:44,ll
933,6/28/2018,12:45,exif,./JPEG_20180626_001618_1713557258.jpg
934,6/28/2018,12:45,ll
935,6/28/2018,12:45,exif,./receipt.png
936,6/28/2018,12:45,dis,./road-sign-1.jpg
937,6/28/2018,12:46,dis,receipt.png
938,6/28/2018,12:46,dis,./road-sign-2.jpg
939,6/28/2018,12:46,exif,./road-sign-2.jpg
940,6/28/2018,12:46,exif,./road-sign-3.jpg
941,6/28/2018,12:47,exif,./computer-vision.jpg
942,6/28/2018,12:47,exif,*
943,6/28/2018,12:49,clear
944,6/28/2018,12:49,ll
945,6/28/2018,12:50,history,|,grep,tessarct
946,6/28/2018,12:50,tesseract
947,6/28/2018,12:50,history,|,grep,tesseract
948,6/28/2018,12:50,history,|,grep,tess
949,6/28/2018,12:51,history
950,6/28/2018,12:51,subl,~/.zshrc
951,6/28/2018,13:35,ll
952,6/28/2018,13:39,exit
953,6/28/2018,13:40,clear
954,6/28/2018,13:40,subl,~/.zshrc
955,6/28/2018,13:42,tmuxinator,android-setup
956,6/28/2018,13:42,cd,~/.AndroidStudio3.1/system/log,&&,cat,./idea.log,|,grep,error
957,6/28/2018,13:42,cd,~/AndroidStudioProjects
958,6/28/2018,13:42,cd,/home/gil_diy
959,6/28/2018,13:42,adb,shell
960,6/28/2018,13:42,mpsyt
961,6/28/2018,13:43,tmuxinator,android-setup
962,6/28/2018,13:43,cd,~/.AndroidStudio3.1/system/log,&&,cat,./idea.log,|,grep,error
963,6/28/2018,13:43,mpsyt
964,6/28/2018,13:43,adb,shell
965,6/28/2018,13:43,cd,~/AndroidStudioProjects
966,6/28/2018,13:43,cd,/home/gil_diy
967,6/28/2018,13:43,cd,~/myGitRepositories
968,6/28/2018,13:43,ll
969,6/28/2018,13:43,cd,customized-workspace
970,6/28/2018,13:43,ll
971,6/28/2018,13:43,cd,macOS
972,6/28/2018,13:43,ll
973,6/28/2018,13:43,cdg
974,6/28/2018,13:43,ll
975,6/28/2018,13:43,cd,Ubuntu
976,6/28/2018,13:43,ll
977,6/28/2018,13:43,cd,.config
978,6/28/2018,13:43,ll
979,6/28/2018,13:43,cd,..
980,6/28/2018,13:43,ll
981,6/28/2018,13:43,subl,./.zshrc
982,6/28/2018,13:47,subl,~/.zshrc
983,6/28/2018,13:54,cd,~
984,6/28/2018,13:54,ag,SAVEHIST
985,6/28/2018,13:55,pwd
986,6/28/2018,13:56,ll,|,history
987,6/28/2018,13:56,ll,|,grep,history
988,6/28/2018,13:56,subl,./.zsh_history
989,6/28/2018,13:57,tmuxinator,android-setup
990,6/28/2018,13:57,history
991,6/28/2018,13:58,ag,zsh_history
992,6/28/2018,14:01,find,.,-name,history.zsh
993,6/28/2018,14:03,source,~/.zshrc
994,6/28/2018,14:03,clear
995,6/28/2018,14:04,ubuntu
996,6/28/2018,14:04,ll
997,6/28/2018,14:04,git,status
998,6/28/2018,14:04,git,diff,.config/lsyncd/backup-my-conf-and-dot-files.lua
999,6/28/2018,14:05,git,add,.config/lsyncd/backup-my-conf-and-dot-files.lua