Config File Collection
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

12345678910111213141516
  1. ccat(){
  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. }
  4. cless(){
  5. ccat $* | less -r
  6. }
  7. ctail(){
  8. tail $* | ccat
  9. }
  10. cgrep(){
  11. grep $* | ccat
  12. }