For example, I might want to:
tail -f logfile | grep org.springframework |
I was thinking that
tail -f logfile | grep org.springframework | cut -c 900-
would remove the first 900 characters
cut uses 900- to show the 900th character to the end of the line
cut
however when I pipe all of this through grep I don't get anything