bash delete first n characters of each line

C++
# Basic syntax:
cut -c n- input_file
# Where
#	- -c means "characters", as opposed to -f for "fields"
# 	- n is the number of characters to delete and n- means keep everything
#		past the nth character. (-n would mean keep everything up to the
#		nth character and just n means return the nth character)
Source

Also in C++: