If I want to cut a list of text using a string as a delimiter, is that possible? For example I have a directory where a list of shell scripts call same perl script say
$ grep abc.pl * | cut -d' ' -f3-999
In that case just use the space character as the delimiter.