Where does the output of this script get printed when you run Blender on Linux?
import bpy
print(bpy.context.active_object.name)
On WindowsOS when Blender starts a console output window also opens, and generally the output gets printed there.
But I am using the Linux (Archlinux) and on Linux blender does not open a console output window, and so I cant figure out where the output gets sent when I run that script from the Blender Text Editor.
The output does not show up in the built-in Blender console window.
Anyone able to help me out?
Sorry for such a silly question.
EDIT: got the answer from #blender, on Linux you have to start blender from a console, then the output will be displayed in the console window you started blender from.