Hi ,

Can executable-name be case-in-sensitive in Linux ...??

Here goes what i need to achieve ...
=> i have a Qt application , which am trying to run in Linux
=> in the *.pro file i have mentioned the TARGET = MyExecutable
=> The application works properly from IDE , but now i am trying to run it from the shell- prompt
and i want to make sure that my executable name ( MyExecutable ) is NOT CASE SENSITIVE.

ie; i should be able to execute in the following way
Qt Code:
  1. ./MYEXECUTABLE
  2. or
  3. ./MyExecutable
  4. or
  5. ./myexecutable
  6. ...etc
To copy to clipboard, switch view to plain text mode 


Can anybody help me to achieve this ...?
thanks in adance