REM stands for remark. It is strictly a comment and can not be executed. It keeps the programmer oriented.
Yes
the command to make anything executable is chmod +x <file>
If it's already in your PATH variable, then simply the name of the executable would do. If not, then use the full path of the executable or navigate to the directory of the executable and then ./executable where "executable" is the name of the executable.
ICON
chmod +x is the command to set the executable flag in Linux but, Linux does not use exe files.
Yes it is used to comment Dos line
Run program.exeorthe name of the program, with or without .exe (if the command prompt is in the same directory/folder of the executable)
"find / -executable" will search the root directory for executables. Not that this will also show directories that are accessible.
exe stands for Executable. FYI... com stands for command bat stands for batch
if the file is allready runnable you can type in the terminal: ./filename
if the file is allready runnable you can type in the terminal: ./filename
The "which" command returns the absolute path of the executable that is called when a command is issued. For instance, 'which firefox'. This is useful in determining whether you are using a locally compiled version or the distribution version of a program.