cut first 10 characters linux code example
Example 1: bash remove first character from line
sed 's/^.\{5\}//' logfile
Example 2: cut first 10 characters linux
tail -f logfile | grep org.springframework | cut -c 5-
sed 's/^.\{5\}//' logfile
tail -f logfile | grep org.springframework | cut -c 5-