Tail multiple log files in one terminal Categories: Code Linux Tags: Linux bash Code shell Script to save as "multitail.sh' or whatever you like. Save it in "/home/username/scripts" or any other folder $ vi multi-tail.sh #!/bin/sh # When this exits, exit all back ground process also. Read more about Tail multiple log files in one terminal
Linux bash scripting examples Categories: Code Software Linux Tags: 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' Read more about Linux bash scripting examples
Linux commands to find files Categories: Code Linux Tags: 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 Read more about Linux commands to find files