cut is a filter command that
Take all fields separated by space after the second one
echo "Hello World to foo" | cut --delimiter ' ' --fields=2-
where:
Output:
World to foo
echo "Hello World to foo" | cut --delimiter ' ' --fields=2
Output:
World
echo foo | cut --characters=2-
# short form
echo foo | cut -c2-
oo
where: