Running programs in terminal
From MEPIS Documentation Wiki
To run a program in terminal:
- you have to make sure they are executable: chmod u+x /path/programname
- don't forget to specify the full path /path/programname or if you are in the program's directory ./programname (put a dot and a slash before the program name -- that means "local directory")
Alternatively you can lauch a program with "sh programname"

