소스 검색

ctools extended and correction

master
Dirk Alders 1 년 전
부모
커밋
8f4ab2582b
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 6
    2
      .zshrc.d/__available__/ctools.zsh

+ 6
- 2
.zshrc.d/__available__/ctools.zsh 파일 보기

@@ -2,11 +2,15 @@ ccat(){
2 2
     cat $* | sed -u "s/ERROR/$(tput setaf 1)&$(tput sgr0)/gI"|sed -u "s/WARNING/$(tput setaf 3)&$(tput sgr0)/gI"|sed -u "s/INFO/$(tput setaf 2)&$(tput sgr0)/gI"|sed -u "s/DEBUG/$(tput setaf 6)&$(tput sgr0)/gI"
3 3
 }
4 4
 
5
+cless(){
6
+    ccat $* | less -r
7
+}
8
+
5 9
 ctail(){
6
-    tail $* | ccat"
10
+    tail $* | ccat
7 11
 }
8 12
 
9 13
 cgrep(){
10
-    grep $* | ccat"
14
+    grep $* | ccat
11 15
 }
12 16
 

Loading…
취소
저장