-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.sh
More file actions
1042 lines (1005 loc) · 29.4 KB
/
notes.sh
File metadata and controls
1042 lines (1005 loc) · 29.4 KB
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
notes () {
# this is one of my first shell scripts. It's messy. it's ugly.
# there's a lot of code that can be optimized and stripped out.
# there are better ways of doing this. So please do it and post changes.
# cant believe i acutally finished something. What a strange fucking feeling.
#foreground
DEFAULT=39
BLACK=30
RED=31
GREEN=32
YELLOW=33
BLUE=34
MAGENTA=35
CYAN=36
LIGHTGRAY=37
DARKGRAY=90
LIGHTRED=91
LIGHTGREEN=92
LIGHTYELLOW=93
LIGHTBLUE=94
LIGHTMAGENTA=95
LIGHTCYAN=96
WHITE=97
#background
default=49
black=40
red=41
green=42
yellow=43
blue=44
magenta=45
cyan=46
lightgray=47
darkgray=100
lightred=101
lightgreen=102
lightyellow=103
lightblue=104
lightmagenta=105
lightcyan=106
white=107
editor=nano #vim vi whatever pico doesnt matter
notesroot=/home/xmetrix/.notes/ #must end with trailing slash
backupDestination=/home/xmetrix/.notes/ #must end with trailing slash
backupFilename="notesbackup.tar.gz"
version=1.0
siteurl=http://notes.xmxstudio.com
#TODO: figure out this clipboard command bullshit
case $1 in
('about') displayabout;;
('tacos') echo "🕵 tacos in disguise!";;
('credits') displaycredits;;
('help') displayhelp;;
('home')
cd $notesroot
;;
('add')
# ***************************************************************************** ADD
if [ -z $2 ]
then
banner NOTES ${WHITE} ${blue}
banner "must supply a note name" ${RED} ${default}
return
fi
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
if [ -f $notesroot$folderHash/$2 ]
then
banner NOTES ${WHITE} ${blue}
banner "❗Note already exists - $2" ${RED} ${default}
else
# if [ -d "$notesroot$folderHash/" ]
# then
# # ###do nothing
# else
mkdir -p "$notesroot$folderHash/"
echo $PWD > "$notesroot$folderHash/.parentpath"
# fi
if [ $# -gt 2 ]; then
sp=${#2}
((sp+=5))
args=$*
length=${#args}
len=$((length-sp))
note=${args:$sp:$len}
echo $note>$notesroot$folderHash/$2
else
$editor "$notesroot$folderHash/$2"
wait
fi
fs=$(stat -c%s "$notesroot$folderHash/$2")
if [ $fs -ge 1 ] || 0
then
banner NOTES ${WHITE} ${blue}
banner "⌗$fh ➜ 📁$PWD " ${LIGHTCYAN} ${default}
lightteal_defaultbg "$2 - successfully created"
else
banner NOTES ${WHITE} ${blue}
banner "⌗$fh ➜ 📁$PWD " ${LIGHTCYAN} ${default}
red_defaultbg "$2 - not created"
fi
fi;;
('clip')
# ************************************************************************** CLIP
let i=0
let found=0
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
for entry in "$notesroot$folderHash/"*
do
if [ -f "$entry" ]
then
((i++))
if [[ $i = $2 ]]
then
banner "NOTES" ${WHITE} ${blue}
fh=${folderHash:0:7}
lines=$(wc -l $entry | awk '{print $1}')
[[ $lines -gt 1 ]] && verbage="$lines lines from" || verbage="$lines line from"
teal_defaultbg "📋 Copied $verbage ➜ $(basename $entry)\n"
#todo: fix this below
#$clipboardCommand $entry
xclip -selection c -i $entry
((found++))
fi
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTES" ${WHITE} ${blue}
banner "NOTE NOT FOUND" ${RED} ${default}
fi;;
('del')
# ************************************************************************** DEL
let i=0
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
numfiles=("$notesroot$folderHash/"*)
numfiles=${#numfiles[@]}
for entry in "$notesroot/$folderHash/"*
do
if [ -f "$entry" ]
then
((i++))
if [[ $i = $2 ]]
then
banner NOTES ${WHITE} ${blue}
banner "⌗ ${folderHash:0:7} ➜ 📁$(pwd) " ${LIGHTCYAN} ${default}
red_defaultbg "DELETED $(basename $entry)\n"
rm "$entry"
if [[ $numfiles = 1 ]]
then
echo -e "❗ Deleting empty notes folder ➜ \e[90m$notesroot$folderHash\e[49m/\n"
rm -rf $notesroot$folderHash/
fi
return
fi
fi
done
banner NOTES ${WHITE} ${blue}
red_defaultbg "Note not found - nothing deleted\n" ;;
('read') # ************************************************************************** READ
let i=0
let found=0
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
for entry in "$notesroot$folderHash/"*
do
if [ -f "$entry" ]
then
((i++))
if [[ $i = $2 ]]
then
banner "NOTES" ${WHITE} ${blue}
fh=${folderHash:0:7}
teal_defaultbg "📚 Reading $(basename $entry) ⟺ $fh ➜ $pp"
notecontent=$(cat $entry)
echo -e "\e[90m\e[49m$notecontent\e[32m\n"
((found++))
fi
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTES" ${WHITE} ${blue}
banner "NOTE NOT FOUND" ${RED} ${default}
fi;;
('edit')
# **************************************************************************** EDIT
let i=0
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
filearray=("$notesroot$folderHash/"*)
let fc=${#filearray[@]}
for entry in "$notesroot$folderHash/"*
do
if [ -f "$entry" ]
then
((i++))
if [[ $i = $2 ]]
then
banner "NOTES" ${WHITE} ${blue}
fh=${folderHash:0:7}
pp="blank"
teal_defaultbg "📚 Editing $(basename $entry) ⟺ $fh ➜ $pp"
lightteal_defaultbg
nano $entry
return
fi
if [[ $i == $fc ]];
then
banner "NOTES" ${WHITE} ${blue}
banner "NOTE NOT FOUND\n" ${RED} ${default}
fi
fi
done;;
('rename') # **************************************************************************** RENAME
nn=$3
if [[ ${#nn} == 0 ]]
then
banner NOTES ${WHITE} ${blue}
banner "Can not rename - new name not specififed" ${RED} ${default}
return
fi
let i=0
let found=0
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
for entry in "$notesroot$folderHash/"*
do
if [ -f "$entry" ]
then
((i++))
bn=$(basename $entry)
if [[ $bn == $3 ]]
then
banner NOTES ${WHITE} ${blue}
banner "Can not rename - file already exists" ${RED} ${default}
return
fi
if [[ $i == $2 ]]
then
banner "NOTES" ${WHITE} ${blue}
fh=${folderHash:0:7}
teal_defaultbg "Renaming $(basename $entry) ➜ $3"
mv $entry $notesroot$folderHash/$3
wait
modDate=$(stat -c %y $notesroot$folderHash/$3 | awk '{print $1}')
echo $modDate
#echo -e "\e[90m\e[49m$notecontent\e[32m\n"
((found++))
fi
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTES" ${WHITE} ${blue}
banner "NOTE NOT FOUND" ${RED} ${default}
fi
;;
('find') #******************************************************************* SEARCH
if [ -z $2 ]
then
banner NOTES ${WHITE} ${blue};
banner " You must supply a search query\n" ${RED} ${default};
return;
fi
banner "NOTES" ${WHITE} ${blue}
dirsfound=();
contentsfound=();
notenamesfound=();
totalfound=0;
for entry in $notesroot*
do
if [ -d "$entry" ]
then
############## check to see if we have a directory name match
pp=$( cat $entry/.parentpath )
if [[ $pp == *$2* ]]
then
highlighted="${pp/$2/\e[92m\e[49m$2\e[39m}"
dirsfound+=("$highlighted\n");
((totalfound++));
fi
############## check each folder of notes for a match on note filename and note contents
for note in $entry/*
do
((i++))
# ######### note filename
if [[ $note == *$2* ]]
then
base=$(basename $note);
li="\e[92m\e[49m𝌆$base\e[39m ➜ 📁$pp\e[39m";
notenamesfound+=("$li\n");
((totalfound++));
fi
contents=$(cat $note --number | grep $2);
if [[ $contents == *$2* ]]
then
bn=$(basename $note);
lineinfo=$(cat $note --number | grep $2 | awk '{print "\tline number" $0}');
li="${lineinfo/$2/\e[92m\e[49m$2\e[39m}"
contentsfound+=("\e[39m\e[49m$bn ➜ 📁$pp\e[39m\n$li\n");
# #echo aaa $contentsfound FFFF
((totalfound++));
fi
done
fi
done
if [[ $i -eq 0 ]]
then
banner "📁/* ALL NOTES" ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND\n" ${RED} ${default}
fi
if [[ ${#dirsfound} -ge 1 ]]
then
echo "\n\n";
banner "\e[92m\e[49m📁 Directory matches\e[39m" ${WHITE} ${default}
echo $dirsfound;
fi
if [[ ${#notenamesfound} -ge 1 ]]
then
banner "\e[92m\e[49m📁 Note fileame matches\e[39m" ${WHITE} ${default}
echo $notenamesfound;
fi
if [[ ${#contentsfound} -ge 1 ]]
then
banner "\e[92m\e[49m📁 Content matches\e[39m" ${WHITE} ${default}
echo $contentsfound;
fi
if [[ $totalfound == 0 ]]
then
banner "NO NOTES FOUND\n" ${RED} ${default}
fi
;;
('all')
let i=0
let found=0
case $2 in
('rename')
# ************************************************************************* ALL RENAME
nn=$4 #newname
firstchar=${nn:0:1}
if [[ $firstchar == "." ]] || [[ $firstchar == "/" ]] #make sure its not trying to move to another path
then
banner NOTES ${WHITE} ${blue}
banner "Can not rename - invalid path in new name" ${RED} ${default}
return
fi
if [[ ${#nn} == 0 ]]
then
banner NOTES ${WHITE} ${blue}
banner "Can not rename - new name not specififed" ${RED} ${default}
return
fi
for entry in $notesroot*
do
if [ -d "$entry" ]
then
ent=$entry
pp=$( cat $entry/.parentpath )
for note in $entry/*
do
((i++))
bn=$(basename $note)
if [[ $bn == $4 ]]
then
banner NOTES ${WHITE} ${blue}
banner "Can not rename - file already exists" ${RED} ${default}
return
fi
if [[ $i = $3 ]]
then
banner "NOTES" ${WHITE} ${blue}
fh=${folderHash:0:7}
mv $note $notesroot$folderHash/$4
wait
modDate=$(stat -c %y $notesroot$folderHash/$4 | awk '{print $1}')
if [[ ${#modDate} -gt 1 ]]
then
teal_defaultbg "Renamed $(basename $note) ➜ $4\n"
else
echo "FAILED!"
fi
((found++))
fi
done
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTE NOT FOUND" ${RED} ${default}
fi
;;
('read')
# ********************************************************************* ALL READ
banner "NOTES" ${WHITE} ${blue}
for entry in $notesroot*
do
if [ -d "$entry" ]
then
ent=$entry
pp=$( cat $entry/.parentpath )
for note in $entry/*
do
((i++))
if [[ $i = $3 ]]
then
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
fh=${folderHash:0:7}
teal_defaultbg "📚 Reading $(basename $note) ⟺ $fh ➜ $pp"
notecontent=$(cat $note)
echo -e "\e[90m\e[49m$notecontent\e[32m\n"
((found++))
fi
done
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTE NOT FOUND" ${RED} ${default}
fi;;
('del')
# ********************************************************************** ALL DEL
let found=0
for entry in "$notesroot"*
do
if [ -d "$entry" ]
then
ent=$entry
pp=$( cat $entry/.parentpath )
for note in $entry/*
do
((i++))
if [[ $i = $3 ]]
then
numfiles=("$entry/"*)
numfiles=${#numfiles[@]}
banner NOTES ${WHITE} ${blue}
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
banner "⌗ ${folderHash:0:7} ➜ 📁$pp " ${LIGHTCYAN} ${default}
red_defaultbg "DELETED $(basename $note)\n"
rm $note
((found++))
if [[ $numfiles -eq 1 ]]
then
rm -rf $entry/
fi
#return
fi
done
fi
done
if [ $found -eq 0 ]
then
banner NOTES ${WHITE} ${blue}
red_defaultbg "Not not found - nothing deleted\n"
else
let i=0
banner "NOTES" ${WHITE} ${blue}
for entry in $notesroot*
do
if [ -d "$entry" ]
then
pp=$( cat $entry/.parentpath )
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
fh=${folderHash:0:7}
lightteal_defaultbg "⌗$fh ➜ 📁$pp "
#banner "⌗$fh ➜ 📁$pp" ${LIGHTCYAN} ${default}
for note in $entry/*
do
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $note)
listItem $paddedIndex $modDate ${note##*/} $partial
done
echo " "
fi
done
if [[ $i -eq 0 ]]
then
banner "📁/* ALL NOTES" ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND\n" ${RED} ${default}
fi
fi;;
('edit')
#******************************************************************* ALL EDIT
let found=0
for entry in "$notesroot"*
do
if [ -d "$entry" ]
then
ent=$entry
pp=$( cat $entry/.parentpath )
for note in $entry/*
do
((i++))
# done
if [[ $i == $3 ]]
then
((found++))
banner "NOTES" ${WHITE} ${blue}
teal_defaultbg "📚 Editing $(basename $note) ⟺ $fh ➜ $pp\n"
$editor $note
fi
done
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTES" ${WHITE} ${blue}
banner "NOTE NOT FOUND" ${RED} ${default}
fi;;
('clip')
# ********************************************************************* ALL CLIP
banner "NOTES" ${WHITE} ${blue}
for entry in $notesroot*
do
if [ -d "$entry" ]
then
ent=$entry
pp=$( cat $entry/.parentpath )
for note in $entry/*
do
((i++))
if [[ $i = $3 ]]
then
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
fh=${folderHash:0:7}
lines=$(wc -l $note | awk '{print $1}')
[[ $lines -gt 1 ]] && verbage="$lines lines from" || verbage="$lines line from"
teal_defaultbg "📋 Copied $verbage ➜ $(basename $note)\n"
#todo: fix this below
#$clipboardCommand $entry
xclip -selection c -i $note
((found++))
fi
done
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTE NOT FOUND" ${RED} ${default}
fi;;
('lc')
#******************************************************************* ALL LINECOUNT
banner "NOTES" ${WHITE} ${blue}
for entry in $notesroot*
do
if [ -d "$entry" ]
then
pp=$( cat $entry/.parentpath )
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
fh=${folderHash:0:7}
lightteal_defaultbg "⌗$fh ➜ 📁$pp "
#banner "⌗$fh ➜ 📁$pp" ${LIGHTCYAN} ${default}
for note in $entry/*
do
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $note)
linecount=$(wc -l $note | awk '{print $1}')
listItem $paddedIndex $modDate ${note##*/} "$linecount - $partial"
done
echo " "
fi
done
if [[ $i -eq 0 ]]
then
banner "📁/* ALL NOTES" ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND\n" ${RED} ${default}
fi;;
('wc')
#******************************************************************* ALL LINECOUNT
banner "NOTES" ${WHITE} ${blue}
for entry in $notesroot*
do
if [ -d "$entry" ]
then
pp=$( cat $entry/.parentpath )
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
fh=${folderHash:0:7}
lightteal_defaultbg "⌗$fh ➜ 📁$pp "
#banner "⌗$fh ➜ 📁$pp" ${LIGHTCYAN} ${default}
for note in $entry/*
do
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $note)
linecount=$(wc $note | awk '{print "l:"$1" w: "$2" c:"$3}')
listItem $paddedIndex $modDate ${note##*/} "$linecount - $partial"
done
echo " "
fi
done
if [[ $i -eq 0 ]]
then
banner "📁/* ALL NOTES" ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND\n" ${RED} ${default}
fi;;
(*)
#******************************************************************* NOTES ALL
banner "NOTES" ${WHITE} ${blue}
for entry in $notesroot*
do
if [ -d "$entry" ]
then
pp=$( cat $entry/.parentpath )
folderHash=$(echo $pp | awk '{print $1}' | md5sum | awk '{print $1}')
fh=${folderHash:0:7}
lightteal_defaultbg "⌗$fh ➜ 📁$pp "
#banner "⌗$fh ➜ 📁$pp" ${LIGHTCYAN} ${default}
for note in $entry/*
do
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $note)
listItem $paddedIndex $modDate ${note##*/} $partial
done
echo " "
fi
done
if [[ $i -eq 0 ]]
then
banner "📁/* ALL NOTES" ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND\n" ${RED} ${default}
fi;;
esac ;;
('dirs') # ****************************************************************************** DIRS
let dcount=0
noteDirs=""
for entry in $notesroot*
do
if [ -d $entry ]
then
pp=$( cat $entry/.parentpath )
noteDirs="$noteDirs\n$pp"
((dcount++))
fi
done
banner "NOTES" ${WHITE} ${blue}
if [[ $dcount -eq 0 ]]
then
banner "Directory count: 0" ${RED} ${default}
else
[[ $dcount -eq 1 ]] && verbage="directory" || verbage="directories"
teal_defaultbg "Directory count: $dcount\n$noteDirs\n"
fi ;;
('count') # ************************************************************************ COUNT
let count=0
let dircount=0
for entry in $notesroot*
do
if [ -d "$entry" ]
then
((dircount++))
ent=$entry
pp=$( cat $entry/.parentpath )
for note in $entry/*
do
((count++))
done
fi
done
if [[ $count -eq 0 ]]
then
banner "NOTES" ${WHITE} ${blue}
banner "Note count: 0" ${RED} ${default}
else
banner "NOTES" ${WHITE} ${blue}
[[ $dircount -eq 1 ]] && verbage="directory" || verbage="directories"
teal_defaultbg "You have $count notes stored in $dircount $verbage\n"
fi;;
('backup')
# ************************************************************************ BACKUP
tar -zcf $backupDestination$backupFilename $notesroot/*
wait
banner "NOTES" ${WHITE} ${blue}
lightteal_defaultbg "Backup completed\n"
lightteal_defaultbg "$backupDestination$backupFilename created"
lightteal_defaultbg "filesize: $(stat -c%s $backupDestination$backupFilename) bytes" ;;
('hash')
# ************************************************************************ HASH
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
banner NOTES ${WHITE} ${blue}
lightteal_defaultbg "$PWD = $folderHash\n";;
('lc')
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
if [ -d $notesroot$folderHash/ ]
then
banner "NOTES" ${WHITE} ${blue}
banner "⌗ ${folderHash:0:7} ➜ 📁$(pwd) " ${LIGHTCYAN} ${default}
let i=0
for entry in $notesroot$folderHash/*
do
if [ -f "$entry" ]
then
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
fn=$(basename $entry)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $entry)
linecount=$(wc -l $entry | awk '{print $1}')
listItem $paddedIndex $modDate $fn "$linecount - $partial"
fi
done
echo " "
else
banner NOTES ${WHITE} ${blue}
banner "📁$(pwd) " ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND" ${RED} ${black}
fi ;;
('wc') folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
if [ -d $notesroot$folderHash/ ]
then
banner "NOTES" ${WHITE} ${blue}
banner "⌗ ${folderHash:0:7} ➜ 📁$(pwd) " ${LIGHTCYAN} ${default}
let i=0
for entry in $notesroot$folderHash/*
do
if [ -f "$entry" ]
then
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
fn=$(basename $entry)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $entry)
linecount=$(wc $entry | awk '{print "l:"$1" w:"$2" c:"$3}')
listItem $paddedIndex $modDate $fn "$linecount - $partial"
fi
done
echo " "
else
banner NOTES ${WHITE} ${blue}
banner "📁$(pwd) " ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND" ${RED} ${black}
fi ;;
('todo')
let i=0
let found=0
case $2 in
('add')
if [ -z $3 ]
then
banner NOTES ${WHITE} ${blue}
banner "must supply a todo note name" ${RED} ${default}
return
fi
if [ -f $notesroot"todo/"$3 ]
then
banner NOTES ${WHITE} ${blue}
banner "TODO Note already exists - $32" ${RED} ${default}
else
# if [ -d $notesroot"todo/" ]
# then
# else
mkdir -p $notesroot"todo/"
echo $notesroot"todo/" > $notesroot"todo/.parentpath"
# fi
if [ $# -gt 2 ]
then
sp=${#3}
((sp+=9))
args=$*
length=${#args}
len=$((length-sp))
note=${args:$sp:$len}
echo $note>$notesroot"todo"/$3
else
$editor $notesroot"todo"/$3
wait
fi
fs=$(stat -c%s $notesroot"todo"/$3)
if [ $fs -ge 1 ] || 0
then
banner NOTES ${WHITE} ${blue}
lightteal_defaultbg "$3 - successfully created"
else
banner NOTES ${WHITE} ${blue}
red_defaultbg "$3 - not created"
fi
fi
;;
('del')
#notes todo del #
# 1 2 3
let found=0
for note in $notesroot"todo/"*
do
((i++))
if [[ $i = $3 ]]
then
((found++))
banner NOTES ${WHITE} ${blue}\
red_defaultbg "DELETED $(basename $note)\n"
rm $note
fi
done
listAllTodo
;;
('read')
let i=0;
let found=0;
for note in $notesroot"todo/"*
do
((i++))
if [[ $i = $3 ]]
then
((found++))
banner "NOTES" ${WHITE} ${blue}
teal_defaultbg "📚 Reading $(basename $note) ⟺ TODO "
notecontent=$(cat $note)
echo -e "\e[90m\e[49m$notecontent\e[32m\n"
fi
done
if [[ $found -eq 0 ]]
then
banner "NOTES" ${WHITE} ${blue}
banner "TODO NOTE NOT FOUND" ${RED} ${default}
fi
;;
(*)
listAllTodo
;;
esac
;;
(*)
# ************************************************************************ NOTES
folderHash=$(echo $PWD | awk '{print $1}' | md5sum | awk '{print $1}')
if [ -d $notesroot$folderHash/ ]
then
banner "NOTES" ${WHITE} ${blue}
banner "⌗ ${folderHash:0:7} ➜ 📁$(pwd) " ${LIGHTCYAN} ${default}
let i=0
for entry in $notesroot$folderHash/*
do
if [ -f "$entry" ]
then
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
fn=$(basename $entry)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $entry)
listItem $paddedIndex $modDate $fn $partial
fi
done
echo " "
else
banner NOTES ${WHITE} ${blue}
banner "📁$(pwd) " ${LIGHTCYAN} ${default}
banner "NO NOTES FOUND" ${RED} ${black}
fi ;;
esac
}
function banner(){ bt=$1
bw=${#bt}
first=$(printf "%*s" $(( (bw + $(tput cols)) / 2 )) "$1")
last=$(printf "%*s" $(( (bw + $(tput cols)) / 2 )) " ")
both=$first$last
stripped=${both:0:$(tput cols)}
echo -e "\e[$2m\e[$3m"$stripped"\e[39m\e[49m"}
function listItem(){
#1 = index, 2=date, 3=note name, 4=firstline
index=$1
datemodified=$2
note=$3
firstline=$4
strLength=$((13+${#index}+${#datemodified}+${#note}+${#firstline}))
consolewidth=$(tput cols)
if [[ strLength -gt consolewidth ]]
then
toremove=$((consolewidth-strLength))
#echo $toremove " chars to cut off"
firstline=${firstline:0:$toremove}...
fi
echo -e "\e[49m\e[33m$index\e[39m - \e[37m$datemodified\e[39m - \e[94m$note\e[33m\e[90m - $firstline\e[39m\e[49m"
#vb6 days of cleanup! PRE GC!
unset index
unset datemodified
unset note
unset firstline
unset strLength}
function listTodoItem(){
#1 = index, 2=date, 3=note name, 4=firstline
index=$1
datemodified=$2
note=$3
firstline=$4
strLength=$((13+${#index}+${#datemodified}+${#note}+${#firstline}))
consolewidth=$(tput cols)
if [[ strLength -gt consolewidth ]]
then
toremove=$((consolewidth-strLength))
#echo $toremove " chars to cut off"
firstline=${firstline:0:$toremove}...
fi
echo -e "\e[107m\e[33m$index\e[39m - \e[37m$datemodified\e[39m - \e[94m$note\e[33m\e[90m - $firstline\e[39m\e[49m"
unset index
unset datemodified
unset note
unset firstline
unset strLength
}
function listHelpItem(){
cmd=$1
desc=$2
strLength=$((3+${#cmd}+${#desc}))
consolewidth=$(tput cols)
if [[ strLength -gt consolewidth ]] && [[ consolewidth -gt 60 ]]
then
toremove=$((consolewidth-strLength))
firstline=${firstline:0:$toremove}...
fi
echo -e "\e[49m\e[33m$cmd\e[39m - \e[37m$desc\e[39m\e[49m"
}
function red_whitebg(){
echo -e "\e[107m\e[31m$1\e[32m\e[49m"
}
function red_defaultbg(){
echo -e "\e[49m\e[31m$1\e[32m\e[49m"
}
function teal_whitebg(){
echo -e "\e[107m\e[36m$1\e[32m\e[49m"
}
function teal_blackbg(){
echo -e "\e[40m\e[36m$1\e[32m\e[49m"
}
function teal_defaultbg(){
echo -e "\e[49m\e[36m$1\e[32m\e[49m"
}
function lightteal_defaultbg(){
echo -e "\e[49m\e[96m$1\e[32m\e[49m"
}
function listAllTodo(){
banner "NOTES" ${WHITE} ${blue}
echo -e "\e[107m\e[30m📋TODO NOTES" # \e[39m\e49m";
let i=0;
for entry in $notesroot"todo/"*
do
if [ -f "$entry" ]
then
((i++))
paddedIndex=$(seq -f "%02g" $i $i)
modDate=$(stat -c %y $entry | awk '{print $1}')
partial=$(head -n 1 $entry)
#listItem $paddedIndex $modDate ${entry##*/} $partial
listTodoItem $paddedIndex $modDate ${entry##*/} $partial
fi
done
echo " "
if [[ $i -eq 0 ]]
then
banner "📁/* ALL TODO NOTES" ${LIGHTCYAN} ${default}
banner "NO TODO NOTES FOUND\n" ${RED} ${default}
fi
}
function displayabout(){
banner "NOTES" ${WHITE} ${blue}
echo "\n"
banner "😎 xmetrix@gmail.com" ${YELLOW} ${default}
banner "🌎 $siteurl" ${lightgray} ${default}
echo "If you'd like to revise, optimize, or otherwise contribute to this script, please feel free to DO IT. JUST DO IT! \n\nIf there are features you'd like to request, simply go to the above url and post the feature request on the feature request page"
}
function displaycredits(){
banner NOTES ${WHITE} ${blue}
lightteal_defaultbg "Thanks to many viewers at livecoding tv. will do some cool stuff with this later. perhaps animated credit list.\n"
}
function displayhelp(){