fix print without title

Is there a way to print out values to a file specified by fix print command such that a title such as # Fix print output for fix ID doesn’t occur?

and I dont mean a custom title, I just mean no title at all. maybe specify something like

fix print “values” file <name.dat> title NONE

Thanks.

Is there a way to print out values to a file specified by fix print command
such that a title such as # Fix print output for fix ID doesn't occur?

why is that a problem?
since that line is prefixed by a '#' character, it can be easily
skipped over or removed with commands like: grep -v '^#'

axel.

Additionally, some plotting programs ignore such lines or can be made to ignore such lines. Gnuplot and numpy.loadtxt ignore them by default for example.