can someone explain what is the difference between having a # and Not
what is the correct setting to have ?
#mlat_cmd=/usr/bin/python3.7 /usr/bin/mlat-client
and
mlat_cmd=/usr/bin/python3.7 /usr/bin/mlat-client
Whenever you see the # character it indicates everything in the line following is commented out i.e. the line is ignored when the file is parsed for example;
# To enable feature X, uncomment the line below
#FeatureX = Enabled
It is also useful as a placeholder and/or marker for example rather than having to trawl through lines of code looking for a particular entry you will often see characters like # followed by a description to make it easier to locate a refernce amongst lines & lines of text.
Other characters you might see serving a similar purpose might be <!-- or // or * for example.
Hope that helps?
Kind regards,
-=Glyn=-