tail -n +1 *
(Strictly speaking, tail -n +1 -- * is needed in case one of the file names begins with a -.)
tail -n +1 -- *
-
E.g. tail -n +1 -- -f -g tells tail that -f and -g are files to read (operands) and not options.
tail -n +1 -- -f -g
tail
-f
-g