Linux bash scripting examples Categorías: Código Software Linux Etiquetas: Linux bash commands script scripting examples Use colors in the shell output First asign color variables red='\e[0;31m' RED='\e[1;31m' blue='\e[0;34m' BLUE='\e[1;34m' Leer más sobre Linux bash scripting examples
Linux commands to find files Categorías: Código Linux Etiquetas: Linux commands bash tricks script Find text inside all files in a folder recursively with grep command grep -iRHn "searchText" path_to_folder Concatenate another grep command to exclude some files, e.g: svn files Leer más sobre Linux commands to find files