linux - how to run/execute a file in the command line without the ./ - Stack Overflow
How can i run a downloaded file?
how to run a .bat file on linux?
How do I run an executable from the terminal on Linux Manjaro?
I'm pretty new to Linux and I've been using the Manjaro distro, and I wanna know if there's any way of running a linux executable through the terminal.
try:
abc/info.exe
but if it's really a Windows program, you will need to install "wine", then do:
wine abc/info.exe
but only some Windows programs will work under wine.
This anwswer is combining other answers in to this question into one.
The info.exe file will either execute under Linux or Windows, but not both.
Executes Under Windows
If the file is a windows file, it will not run under Linux on it's own. So if that's the case, you could try running it under a windows emulator (WINE). If it's not compatible with wine, then you won't be able to execute it under Linux.
Before you can start, you will need to install wine. The steps you need to install wine will vary on the linux platform you are on. You can probably google "Ubuntu install wine", if for example, you're installing ubuntu.
Once you have wine installed, then you'd be able to execute these commands.
cd abc/
wine info.exe
Execute Under Linux
if you know this file to run under linux, then you'll want to execute these commands:
Change to your abc directory
cd abc/
Then you'll want to change permissions to allow all users to execute this file (a+x).
you could also allow just the user to execute (u+x)
chmod a+x info.exe
Launch the program, the ./ tells the command line to look in the current path for the file to execute (if the 'current' directory isn't in the $PATH environment variable.
./info.exe
Give execute permission to your script:
chmod +x /path/to/yourscript.sh
And to run your script:
/path/to/yourscript.sh
Since . refers to the current directory: if yourscript.sh is in the current directory, you can simplify this to:
./yourscript.sh
You need to mark shell scripts as executable to run them from the file manager:
Right click on your
.shfile and select Properties:
In the Permissions tab, check Allow executing file as program:

Close the Properties window and double-click the file. A dialog will pop up giving you the option to run the script in a terminal:
