-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhist.txt
1056 lines (1055 loc) · 20.8 KB
/
hist.txt
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
chg.sh1
ping www.ibm.com >t &
'
'' > sub.txt
( ping www.ibm.com & )
( ping www.ibm.com >t & )
( var=abc )
(ping www.ibm.com & ;)
(ping www.ibm.com &)
(ping www.ibm.com &;)
. hist.sh
../tool/chgd.sh
../tool/chgd.sh .
../tool/crsp.sh f.txt | sort -u > f.$$ ; mv f.$$ f.txt
../tool/crsp.sh jp.txt > jp.$$
../tool/crsp.sh jp.txt | sort -u jp.$$;mv jp.$$ jp.txt
../tool/dif.sh
../tool/dif.sh .
;
> a.txt
> a.txt << EOF
> b.txt
> somthing
> sub.txt
> tobeclean
>chgd.sh
>r
\ll
\ls
abc=abcde
alias
alias --help
alias ll='ls -al'
and --help
awk '{print $1}' hist.txt | sort | uniq -c
awk '{print $1}' hist.txt | sort | uniq -c | sort
awk '{print $1}' hist.txt | sort | uniq -c | sort -r
awk '{print $1}' hist.txt | sort | uniq -c | sort -v
awk --help
awk -F'(' '{print $1}' jp.txt
awk -F'(' '{print $1}' jp.txt > jp.tmp
awk -f'(' '{print $1}' jp.txt
awk -f( '{print $1}' jp.txt
bg
bg 1
bg 15608
bmlog=$(git log --oneline --reverse | grep '[0-9]$' | awk '{print $1}')
bmlog=$(git log --oneline | awk '{$1}')
bmlog=$(git log --oneline | awk '{print $1}')
bmlog=$(git log --oneline | grep '[0-9]$' | cat -n | sort -r)
bmlog=$(git log --oneline | grep '[0-9]$' | cat -n)
cal
cat --help
cat ../tool/chgd.sh
cat ../tool/dif.sh
cat ./.git/FETCH_HEAD
cat .git/refs/heads/master
cat .git/refs/heads/somefea
cat << EOF >somthing
cat > a.txt
cat > a.txt <<EOF
cat >tst
cat a
cat a.txt
cat a.txt <<EOF
cat bookmarks_14-6-16.html
cat chgd.sh
cat crsp.sh
cat ctname.sh
cat dif.sh
cat dif.sh -
cat err
cat f.txt
cat hist.sh
cat hist.txt
cat hist.txt | cut -f2
cat hist.txt | cut -f2 | sort -u > hist.$$
cat jp.txt
cat jp.txt | tr [a-z] [A-Z] >jp.$$
cat jp.txt | tr -s [a-z] [A-Z]
cat jp.txt | tr -s [a-z] [A-Z] >jp.$$
cat profile
cat r
cat s
cat somthing
cat somthing.txt
cat sub.txt
cat t
cat tool/chgd.sh
cat tool/dif.sh
cat tool/hist.sh
cat trace_UAT_sql.sh
cat tst
cat txt
cat ~/.bash_history
cd
cd '第一次公开课视频和资料(9月7日)'
cd -
cd .
cd ..
cd ../
cd ../../bm
cd ../favo
cd ../favo/
cd ../favo1
cd ../hmfv
cd ../hmfv/
cd ../hmfv/ ; git branch -D tmp ; cd -
cd ../noname/
cd ../oad
cd ../oad/
cd ../test/
cd ../tool
cd ../tool/
cd ../trygit
cd ../trygit/
cd ../trygit2
cd ../wkfv/
cd ../zz
cd .git
cd /
cd /bin
cd /c
cd /c/DISK-D/trygit
cd /c/DISK-D/trygit/
cd /d/pam-db-srcwc/Schema
cd /d/pam-db-srcwc/View
cd /dev/fd
cd /e
cd /e/
cd /e/bm
cd /e/com/
cd /e/favo/
cd /e/tool
cd /e/tool/
cd /e/w
cd /e/wkfv/
cd /etc/
cd /g
cd /i
cd /i/bak-i
cd /i/bak-i/
cd /i/bak-i/favo
cd /i/bak-i/favo/
cd /i/bak-i/hmfv/
cd /i/bak-i/oad
cd /i/bak-i/test/
cd /i/bak-i/too
cd /i/bak-i/tool
cd /i/bak-i/tool/
cd /i/bak-i/trygit/
cd /i/bak-i/wkfv/
cd /j/pic-j
cd /j/std-j/传智播客-1307月份javascript从入门到精通/9/
cd /j/std-j/传智播客-1307月份javascript从入门到精通/9/第一次公开课视频和资料(9月7日)
cd /tool
cd /w/oth-v/
cd /w/oth-v/true detetive
cd D:\pam-db-srcwc\Schema
cd _
cd bak-i/
cd bm
cd c
cd favo
cd favo/
cd noname/
cd oad
cd script/
cd test/
cd tool
cd tool/
cd true\ detetive/
cd trygit2
cd unix
cd wkfv
cd wkfv/
cd xi
cd ~
chg.sh1
chgd.sh
chgd.sh ../hmfv
chgd.sh ../hmfv/
chgd.sh /i/bak-i/hmfv
chgd.sh1
chmod 644 hist.txt
chmod 744 *
clear
clera
cmdcnt.sh $(history | cut -c2-)
cmdcnt.sh hist.txt
cmdcnt.sh hist.txt | type
cmdcnt.sh hist.txt | xargs type
cmdcnt.sh ~/.bash_history
comm -12 sub.txt pre.txt
cp * ../
cp --help
cp -R ../favo1/.git ./
cp -R favo favo1
cp ../favo ../favo1
cp ../favo1/,git ./
cp ../favo1/.git ./
cp ../tool/dif.sh ../tool/dif.sh2
cp ./favo favo1
cp chg.sh1 ../favo
cp chgd.sh chg.sh1
cp cmdcnt.sh cmdcnt.sh1
cp favo favo1
cp h* test/
cp hist.sh crsp.sh
cp si*/* xi/
cta chgd.sh
cta trace_UAT_sql.sh
ctname.sh
ctname.sh .
ctname.sh ..
ctname.sh ../tmp
cut --help
date
date +%a
date +%y%m%d
date +%y%m%d%H%M%S >> somthing.txt
date --date='1 day ago'
date --date='1 days ago'
date --date='14-6-16'
date --date='14-6-18'\
date --date='14-6-26 3 days ago'
date --date='14-6-26 4 days ago'
date --date='14-6-26 4 days ago' +%w
date --date='14-6-26 last MON'
date --date='14-6-26 last SUN'
date --date='14-6-26' +%D
date --date='14-6-26' +%d
date --date='14-6-26' +%w
date --date='14-6-28' +%w
date --date='14-6-29 -7 days ago'
date --date='14-6-29 6 days ago'
date --date='14-6-29 7 days ago'
date --date='14-6-29' +%w
date --date='2014 06 16'
date --date='2014- 06- 16'
date --date='2014-06-16'
date --date='MON'
date --date='May 17 17:49'
date --date='May 17 17:49' +%y%m%d
date --date='May 17 17:49' +%y%m%d%H%M%S
date --date='last MON '
date --date='last MON befor 14-6-18'
date --date='last MON before 14-6-18'
date --date='last MON'
date --date='last MON' +
date --date='one day before 14-6-18'
date --date='one days ago'
date --help
date -s '14-6-18' -d 'last MON'
date -s 'last MON'
date -s 14-6-23
date -s last MON
dd if=tst
df
df --help
dif.sh
diff --help
diff bookmarks_14-6-23.html bookmarks_14-6-22.html
diff hist.txt ./hist.txt
diff sub.txt pre.txt
dii
disown --help
du *
du *.7z
du --help
du -c .
du -c . | tail -n1
du -ch
du -ch .
du -ch tool
du -h .
du -s
du -s *.7z
du -s .
du -s trygit
du -s trygit trygit2
du -s trygit2
du -sh
du -sh .
du -sh tool
du -sh wkfv
du .
du wkfv
echo "sed -e 's/data\:.*\">/\">/' " > /i/bak-i/tool/cleanicon.sh
echo $$
echo $$;tst;sh tst;. tst;source tst
echo $' \''
echo $(#abc)
echo $HISTSIZE
echo $abc
echo $bmlog
echo $cm
echo $dir
echo $nex
echo $pre
echo $thea
echo $var
echo ${#abc}
echo ${abc}
echo '
echo '' > sub.txt
echo \'
echo a
egrep --help
elm --help
env
env |sort
eval "echo a"
exec --help
exec 1>&4
exec 4>&1
exec >r
exec r>&1
exit
expr --help
fg
file --help
find --help
fit add somthing.txt
fit diff
fitk
for a in $(kill -l);do echo $a done;
for a in $(kill -l);do echo $a; done;
fork --help
gcc
gcc --help
git remote
git remote -v
git status
git --global
git --help config
git --help ls
git ../trygit
git /i/bak-i/test/
git add
git add *
git add -A
git add -a
git add a.txt
git add bookmarks_14-6-16.html
git add bookmarks_14-6-4.html
git add bookmarks_14-6-5.html
git add chg.sh1
git add chgd.sh
git add cmdcnt.sh
git add ctname.sh
git add dif.sh
git add f.txt
git add hist.sh
git add hist.sh crsp.sh
git add hist.txt
git add somthing
git add somthing.txt
git alias
git blame bookmarks_14-6-16.html
git blame chgd.sh
git brach
git brach -d master
git branch
git branch master
git branch --help
git branch -D checkout
git branch -D fea
git branch -D master
git branch -D tmp
git branch -a
git branch -d master
git branch -d sc
git branch -d somefea
git branch -d somefea2
git branch -d somefea3onfea2
git branch -m master
git branch -r master
git branch checkout master
git branch fea
git branch master
git branch somefea
git branch somefea2
git branch somefea3onfea2
git branch tmp
git branch tryf3
git branch tryf4
git check out
git checkout
git checkout -- a.txt
git checkout -b somefea2
git checkout 20cceed
git checkout bm.html
git checkout bookmarks_14-6-16.html
git checkout e5115fa
git checkout fea
git checkout fea]
git checkout hist.txt
git checkout master
git checkout sc
git checkout somefea2
git checkout somefea3onfea2
git checkout somthing.txt
git checkout t
git checkout tmp
git checkout tryf3
git checkout tryf4
git cherry
git cherry -v fea
git chgd.sh
git clean
git clean -df
git clean -f
git clone file:///c/DISK-D/trygit
git clone file:///c/DISK-D/trygit ../trygit2
git clone file:///c/DISK-D/trygit trygit2
git clone https://github.com/turnon/favo.git
git clone https://github.com/turnon/favo.git ./favo
git clone https://github.com/turnon/noname.git
git clone https://github.com/turnon/tool.git
git clone https://github.com/turnon/wkfv.git
git comfig --global use.name 'k'
git comm -12 sub.txt pre.txt
git commit
git commit a.txt
git commit bookmarks_14-6-16.html
git commit somthing.txt
git commit --amend
git commit -a -m "bk"
git commit -a -m "in one line"
git commit -a -m $(date)
git commit -a -m 'add jp drama'
git commit -a -m 'after extract'
git commit -a -m 'bk'
git commit -a -m 'change mode'
git commit -a -m 'do not use tmp file'
git commit -a -m 'finish ctname'
git commit -a -m 'hist bk without space'
git commit -a -m 'sort number'
git commit -a -m'bk'
git commit -a hist.txt
git commit -m "bk after new script"
git commit -m "replace return"
git commit -m 'bk with new shell script'
git commit -m 'bk'
git commit -m 'command count'
git commit -m 'err at bottom'
git commit -m 'extract sed'
git commit -m 'file create time'
git commit -m 'film'
git commit -m 'remove space'
git commit -m 'script'
git commit -v
git commit a.txt
git commit bookmarks_14-6-16.html
git commit chgd.sh
git commit hist.txt
git commit somthing.txt
git config
git config --get-color
git config --gloabal
git config --gloabal -l
git config --global
git config --global use.email '[email protected]'
git config --global use.name 'k'
git config --global user.email "[email protected]"
git config --global user.email '[email protected]'
git config --global user.email '[email protected]'
git config --global user.name "k"
git config --global user.name "ken"
git config --global user.name 'k'
git config --global user.name 'z'
git config --global user.name='k'
git config -l
git config user.email '[email protected]'
git config user.name 'l'
git diff
git diff c29a28a ff62987
git diff a
git diff a.txt
git diff a950d3b 870efc7
git diff bookmarks_14-6-23.html bookmarks_14-6-22.html
git diff d47b1e5 f85c6bb
git diff dd46a03 26f3401 | grep 'HREF' > tmp.$$
git diff fcf8449 c29428a
git diff fcf8449 c29a28a
git diff fea
git diff ff62987 c29a28a
git diff hist.txt
git diff master
git diff master master
git diff master tmp
git diff somthing.txt
git diff sub.txt pre.txt
git diff tmp
git diff tmp | grep '^-'
git diff tmp | grep -c '^+'
git diff tmp | grep -c '^-'
git diff tryf3
git fetch
git fetch --all
git fetch -all
git fetch a
git fetch hmfv master:tmp
git fetch noname
git fetch origin
git fetch origin master :master
git fetch origin tryf3:master
git fetch origin tryf4:master
git fetch origin tryf4:tryf3
git fetch origin fea
git fetch origin fea:fea
git fetch origin master
git fetch origin master:master
git fetch origin master:sc
git fetch origin master:tmp
git fetch origin tryf3:master
git fetch origin tryf3:tryf3
git fetch origin tryf4:master
git fetch origin tryf4:tmp
git help
git help add
git help branch
git help cd
git help checkout
git help clean
git help commit
git help config
git help diff
git help du
git help fetch
git help gitk
git help index
git help log
git help ls
git help merge
git help reflog
git help remote
git help reset
git help revert
git help script
git help tar
git https://github.com/turnon/noname.git
git init
git log
git log --graph
git log --graph
git log --graph --oneline
git log --one-line
git log --oneline
git log --oneline --graph
git log --oneline bookmarks_14-6-4.html
git log --oneline | grep '[0-9]$'
git log --oneline | grep '[0-9]$' | awk '{print $1}'
git log --oneline | grep '[0-9]$' | awk '{print $1}' > pre.txt
git log --oneline | grep '[0-9]$' | awk '{print $1}' >> sub.txt
git log --oneline | sort
git log --onrline
git log --stat
git log -oneline
git log -stat
git log 8d82ec7
git log 8d82ec7 --oneline
git merge --abort
git merge --squash fea
git merge fea
git merge fea master
git merge master fea
git merge somefea2
git merge somefea3onfea2
git merge tmp
git merger tmp
git mergetool
git pull origin
git pull origin fea:master
git pull origin master
git push hmfv master:master
git push noname
git push oad master:master
git push oad master:master
git push origin
git push origin :tryf4
git push origin master:master
git push wkfv master:master
git push wpfv
git push wpfv master:master
git rabase --continue
git rebase --abort
git rebase --continue
git rebase -continue
git rebase master
git reflog
git remote
git remote --help
git remote -a
git remote -b
git remote -v
git remote add "https://github.com/turnon/tool.git"
git remote add -f https://github.com/turnon/oad.git
git remote add -f https://github.com/turnon/wkfv.git
git remote add hmfv https://github.com/turnon/hmfv.git
git remote add https://github.com/turnon/oad.git
git remote add https://github.com/turnon/tool.git
git remote add https://github.com/turnon/wkfv.git
git remote add https://github.com/turnon/wpfv.git
git remote add oad https://github.com/turnon/oad.git
git remote add wkfv https://github.com/turnon/wkfv.git
git remote add wpfv https://github.com/turnon/wpfv.git
git remote https://github.com/turnon/oad.git
git remote https://github.com/turnon/tool.git
git remote rename origin noname
git remote set-url origin https://github.com/turnon/tool.git
git remote set-url origin ssh://[email protected]:turnon/tool.git
git remote show origin
git reset --hard
git reset --hard HEAD
git reset HEAD
git reset HEAD bookmarks_14-6-16.html
git reset HEAD~1
git reset HEAD~2
git revert --abort
git revert -abort
git revert 1e920f7
git revert 71e
git revert 71e192e
git revert 71e192e2d
git revert HEAD~1
git revert HEAD~2
git revert b0cba2c
git rm --cached somthing
git rm -f bm.html
git rm bm.html
git rm bookmarks_14-6-16.html
git rm chg.sh1
git rm hist.txt
git status
git status --oneline
git status --online
git status]
git staus
git stuas
git svn
git tag
gitk
gitk ../hmfv
gitk ../hmfv/
got log
grep '' hist.txt
grep '2208' *
grep '2209' *
grep '2210' *
grep 'ICON' bookmarks_14-7-13.html
grep 'ICON=[\"]*[\"]' bookmarks_14-7-13.html | head -n2
grep '[ ]$' hist.txt
grep '^M' hist.txt
grep 'chg_ot_type' *
grep 'count' *
grep 'data\:' bookmarks_14-7-13.html | head -n2
grep 'data\:*' bookmarks_14-7-13.html | head -n2
grep 'data\:*+' bookmarks_14-7-13.html | head -n2
grep 'data\:*{+}' bookmarks_14-7-13.html | head -n2
grep 'data\:.' bookmarks_14-7-13.html | head -n2
grep 'data\:.*' bookmarks_14-7-13.html | head -n2
grep 'data\:.*\"' bookmarks_14-7-13.html | head -n2
grep 'data\:.*\">' bookmarks_14-7-13.html | head -n2
grep 'data\:.*\"\>' bookmarks_14-7-13.html | head -n2
grep 'data\:.+' bookmarks_14-7-13.html | head -n2
grep 'data\:>' bookmarks_14-7-13.html | head -n2
grep 'data\:[*+]' bookmarks_14-7-13.html | head -n2
grep 'data\:[*]' bookmarks_14-7-13.html | head -n2
grep 'data\:[.]+' bookmarks_14-7-13.html | head -n2
grep 'hist' hist.txt
grep 'remote' ../tool/hist.txt
grep 'sy' *
grep 'v' hist.txt
grep --help
grep --hrlp
grep -=help
grep -n '[ ]$' hist.txt
grep -v '<<<<' tmp.hist >hist.txt
grep -v '====' hist.txt >tmp.hist
grep -v '>>>>' hist.txt >tmp.hist
gtk
head -n10 hist.txt
head -n50 hist.txt
hist.sh
history
history --help
history -w
history | awk '{print $2}'
history | awk '{print $2}' | sort -u > hist.txt
history | cut -c8-
history | cut -c8- >> hist.txt
history | cut -c8- | sort -u > hist.txt
history | cut -c8- | sort -u >> hist.txt
history | cut -f2-
history | head -n10
history | sort | uniq -c
history | tail -n10
history | tail -n15 >> chgd.sh
hitsory -w
jobs
jpbs
kill --help
kill -1
kill -1 14488
kill -1 14860
kill -1 16092
kill -1 161
kill -1 16136
kill -1 17576
kill -1 18092
kill -9 16092
kill -9 17576
kill -l
kill 15180
kill 15608
less
less --help
less <(ls -al)
less hist.txt
ll
ll ..
ll /
ll | awk '{$1="" ;print $0}'
ll | awk '{$1="" ;print $0}' | cut -c2-
ll | awk '{$2="" ;print $0}'
ll | grep 'u'
ln
ln --help
ls
ls *.7z | du -s
ls *.7z | du -sh
ls *.7z | xargs du -ch
ls *.7z | xargs du -sh
ls *.7z | xargs du -s
ls --full-time
ls --full-time | ;
ls --full-time | awk '{ print $9 }'
ls --full-time | cut -f9
ls --fuul-time
ls --help
ls -1
ls -A
ls -Al /
ls -R >t
ls -a
ls -al
ls -al ../favo1
ls -al /
ls -al /bin
ls -alc
ls -cl
ls -cl --full-time
ls -cl --full-time $1 | awk '{ $1=" "; $2=" "; $3=" "; $4=" "; $5=" "; print $0}' | awk '{}'
ls -cl --full-time $1 | cut -c6-| awk '{print $1" "$2" "$3" "$4" "$5" "$6}'
ls -cl --full-time $1 | cut -d" " -f6-
ls -cl --full-time $1 | cut -d"\t" -f6-
ls -cl --full-time $1 | cut -f6-
ls -cl --full-time $1 | cut -f6-| awk '{print $1" "$2" "$3" "$4" "$5" "$6}'
ls -l
ls ..
ls ../
ls ../tool/
ls /
ls /a
ls /abc
ls /abc 2>/dev/null
ls /abc 2>/dev/null || echo 'err'
ls /c
ls /z
ls ^t
ls ^t*
ls b*
ls b* | cut -d_ -f1
ls b* | cut -d_ -f2
ls bo*
ls bookm*
ls si*
ls si* --full-time
ls si* --full-timr
ls si* -F
ls si* -al
ls si* -al | grep '^-'
ls si* -al | grep '^-' | wc -l
ls si* -cl
ls t
ls t*
ls t* -d
ls t* -d | du -s
ls t* -d | xargs du -s
ls t* -d | du -s
ls t* -d | xargs du -s
ls t* | du
ls t* | du -c
ls t* | du -d
ls t* | du -s
ls | cut -d_ -f1
ls | cut -d_ -f2
ls | grep 'u'
ls | vi -
ls | wc -w
mailx --help
man cat
man du
man history
man ls
man sort
mkdir --help
mkdir bak-i/favo
mkdir oad
mkdir test
mkdir wkfv
mkdir xi
mkfifo --help
more
more <$(ls -al)
more <(ls -al)
mount
mount --help
mv --help
mv . ../wkfvtmp
mv a.txt a.sh
mv b.txt a.txt
mv chg.sh1 chgd.sh
mv chgd.sh1 chgd.sh
mv hist.17856 hist.txt
mv hist.3660 hist.txt
mv hist.tmp hist.txt
mv jp.4896 jp.txt
mv jp.tmp jp.txt
mv script.tar.140609171407 /dev/null
mv somthing somthing.txt
mv test test.sh
mv tmp.hist hist.txt
mv wkfv wkfvtmp
mv wkfvtmp/wkfv ./wkfv
nex=$(echo $bmlog | cut -d' ' -f2, )
nex=$(echo $bmlog | cut -d' ' -f2- )
nl --help
nohup --help
nohup ls
p -
parallel --help
parrel --help
paste --help
paste pre.txt sub.txt > com.txt
pre=$(echo $bmlog | cut -d' ' -f1)
pre=$(echo $bmlog | cut -f1)
ps
ps --help
ps -e
ps -ef
ps -elf
ps -f
ps -l
ps -p $$
ps | awk '/sleep/ {print "kill -9",$1}'
ps | awk '/sleep/ {print $1}'
ps | awk '/sleep/ {print \"kill -9\",$1}'
pushd
pwd
read --help
read -t 5 abc
rm -df .git
rm -df trygit2
rm -f ?*
rm -f a.txt
rm -f bm.html
rm -f dif.18832
rm -f dif.19596
rm -f dif.20208
rm -f dif.sh2
rm -f difdetail.18648 difsum.18648
rm -f pre.txt sub.txt com.txt
rm -f script.tar.140609171407
rm -f somthing.txt
rm -f tmp.3368
rm -f trygit2
rm -rf ../tmp
rm -rf .git
rm -rf favo
rm -rf script
rm -rf tool
rm -rf trygit2
rm -rf wkfvtmp
rm cmdcnt.sh1
rm cmdtmp.3804
rm hist.txt
rm hist.txt1
rm r
rm somthing.txt
rm t
rm t s
rm tst
rpm --help
rpm -ivh abc
script
sed --help
sed -e 's/data\:.*\">//' bookmarks_14-7-13.html > $$.html
sed -e 's/data\:.*\">/\">/' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON=[\"]*[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON=[\"]*[\"]//g' bookmarks_14-7-13.html | head -n2
sed -e 's/ICON=[\"]*[\"]//g' bookmarks_14-7-13.html | head -n50
sed -e 's/ICON[\=]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"]*[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"]*{*}[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"]*{0}[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"].+[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"][*]+[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"][*]{0}[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"][.]+[\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/ICON[\=][\"][\"]//g' bookmarks_14-7-13.html > $$.html
sed -e 's/[ ]$//' hist.txt > hist.txt1
sed -e 's/[]$//'
sed -e 's/[]$//' hist.txt > hist.txt1
sed -e 's/data\:.+\"\>/\"\>/g' bookmarks_14-7-13.html
sed -e 's/data\:.+\"\>/\"\>/g' bookmarks_14-7-13.html > $$.html
sed -e 's/data\:>//g' bookmarks_14-7-13.html > $$.html
sendmail --help
set
set +x
set --help
set -x
setid --help
sh -v tst
sh -x tst
sh chg.sh1
sh chgd.sh
sh cmdcnt.sh hist.txt
sh cmdcnt.sh hist.txt | less
sh cmdcnt.sh hist.txt | sort -n
sh hist.sh
sh test.sh
sh tst
simtop
simtop 2>err
sleep 10 &
sleep 5 &
sleep 50 &
sleep 60 &
sleep 600 &
sort --help
sort -u hist.txt
sort -u hist.txt > hist.txt
sort -u hist.txt > hist.$$
sort -u hist.txt > hist.tmp
sort -u hist.txt | head
sort -u hist.txt | head -n10
sort -u hist.txt | head -n50
sort -u jp.4896 >jp.txt
sort -u jp.txt > jp.$$ ; mv jp.$$ jp.txt
sort -u jp.txt > jp.$$ ; sleep 5 ; mv jp.$$ jp.txt
sort -u jp.txt >jp.$$ ; mv jp.$$ jp.txt
sort -u jp.txt | jp.$$ ; mv jp.$$ jp.txt
sort hist.txt | uniq | head -n10
source --help
source tst
stat a
strace
sync
tac --help
tac bm.html
tar --help
tar -xf script.szp52.140707145239
tar tvf script.szp52.140707145239
tar tvf script.tar.140609171407
tar xf script.tar.140609171407
tar xvf script.szp52.140707145239 .
test --help
test txt
test.sh
test.sh txt
thea=$( grep -c '^[+]' tmp.$$ )
thea=$( grep -c '^[-]' tmp.$$ )
time ../tool/dif.sh
time cmdcnt.sh hist.txt
time cmdcnt.sh1 hist.txt
time ls
time ls and .
top
touch --help
touch bookmarks_14-6-25.html --mtime '140630'
touch bookmarks_14-6-25.html --mtime='140630'
touch bookmarks_14-6-25.html -m --time '140630'
touch bookmarks_14-6-25.html -m --time='140630'
touch bookmarks_14-6-25.html -m -d '140630'
touch bookmarks_14-6-25.html -mtime '140630'
tr --help
trap --help
trap -l
tst
tst &
tst 2>&1
tst 2>&3 3>t
tst 3>&2 2>&1 1>&3 >t 2>s
tst 3>&2 3>t
tst 4>r