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.

Answer from JoelFan on Stack Exchange
🌐
GeeksforGeeks
geeksforgeeks.org › linux-unix › how-to-run-file-in-linux
How to Run a File in Linux - GeeksforGeeks
July 23, 2025 - Right-click on the file, choose "Open With", and select the appropriate application to open it. Here is how you can do it - ... You may see your file running now. To run a file in Linux using the terminal, follow these steps: 1. Navigate to the ...
🌐
Living the Linux Lifestyle
livingthelinuxlifestyle.wordpress.com › 2020 › 02 › 09 › how-to-execute-files-in-linux
How to Execute Files in Linux – Living the Linux Lifestyle
February 9, 2020 - You can mark some files as executable within the GUI. Start your favorite file manager, then navigate to the desired program. Right-click the program, then select the “Permissions” tab. Under Execute, change the permissions to the desired value, such as Only Owner, Only Owner and Group, or Anyone.
Discussions

How do I run an executable from the terminal on Linux Manjaro?
Things are not "executable" that are written by the user by default, you have to make it executable... chmod +x /path-to/filename.ext then you can execute it with the absolute or relevant path name ./filename.ext ~/Folder/filename.ext /path/to/Folder/filename.ext More on reddit.com
🌐 r/linux4noobs
11
8
June 2, 2021
linux - how to run/execute a file in the command line without the ./ - Stack Overflow
If you want to execute this file specific to local user then create ~/bin directory put the file inside of it and append this path to your $PATH env. ':' is a separator Check following link. http://www.cyberciti.biz/faq/unix-linux-adding-path/ More on stackoverflow.com
🌐 stackoverflow.com
how to run a .bat file on linux?
🌐 r/linux4noobs
34
11
November 24, 2023
.run files
Does the file have executable permissions? (chmod u+x , without the "u" if needed for root user as well) More on reddit.com
🌐 r/linuxquestions
7
3
November 28, 2021
🌐
Wikihow
wikihow.com › computers and electronics › operating systems › linux › how to run files in linux: 9 steps (with pictures) - wikihow
How to Run Files in Linux: 9 Steps (with Pictures) - wikiHow
April 30, 2021 - This wikiHow teaches you how to run files in Linux. You can run most files using a file manager program. Most Linux distributions have a default File Manager that comes pre-installed. You can also use the Terminal to run a file in Linux....
🌐
Stack Overflow
stackoverflow.com › questions › 35259825 › linux-how-to-run-execute-a-file-in-the-command-line-without-the
linux - how to run/execute a file in the command line without the ./ - Stack Overflow
the idea is to do this way in any directory, not only one in specific! 2016-02-07T22:40:41.723Z+00:00 ... Edit your "$PATH" variable to include the directory in which this file is located. For example, this is a part of my "$PATH": /usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/rany/bin ... After putting an executable script in one of these directories you'll be able to execute it by simply typing its name at the command line.
🌐
Parklanejewelry
www2.parklanejewelry.com › home › 5+ compelling ways to execute a file in linux
5+ Compelling Ways To Execute A File In Linux
March 23, 2025 - There are two main ways to execute a file in Linux: using the command line or using a graphical file manager. To execute a file using the command line, open a terminal window and navigate to the directory where the file is located.
Find elsewhere
🌐
Parklanejewelry
www2.parklanejewelry.com › home › 5+ ways to execute a file in linux (with clear examples)
5+ Ways to Execute a File in Linux (with Clear Examples)
March 22, 2025 - To do this, use the following command: ... Once a file is made executable, you can run it by typing its name in the terminal. For example: ... The terminal is pivotal in the process of running files in Linux because it provides a direct interface to the operating system.
🌐
Quora
quora.com › How-do-I-run-a-file-in-terminal-using-Linux
How to run a file in terminal using Linux - Quora
Answer (1 of 5): You can only run executable files. You can confer executable properties to any file using the chmod command. You need to do this if the file is a script that you wrote. If the file was created by a compiler & linker, it almost certainly has executable permissions. If you don't kn...
🌐
Vistarewired
vistarewired.com › home › running files in linux: a step-by-step guide
Running Files in Linux: A Step-by-Step Guide - Vista Rewired
July 26, 2024 - These permissions decide what actions are allowed on a file. The ‘chmod’ command controls these rules: To allow a file to run as a script, type chmod +x yourscriptname.sh. This step makes the file ready to be executed.
🌐
Gcore
gcore.com › home › learning › how to make a file executable in linux
How to Make a File Executable in Linux | Step-by-step Guide
April 8, 2025 - Running an Executable. Once a file is executable, you can run it from the terminal. If the file is in your current directory, you’d typically prefix it with ./, as in ./my_script.sh. Let’s walk through the steps to make a file executable in Linux.
🌐
Medium
medium.com › @peey › how-to-make-a-file-executable-in-linux-99f2070306b5
How to make a file executable in linux? | by Peeyush Kushwaha | Medium
August 30, 2016 - To execute a file all we need to do is enter the path of the file on the command prompt. We’ll also need execute permissions on the file, like to read a file we’d need read permissions.
🌐
MangoHost
mangohost.net › mangohost blog › how to make a file executable in linux
How to Make a File Executable in Linux
February 11, 2024 - In this guide, we will explore how to make a file executable in Linux using various methods. Method 1: Using the chmod Command The chmod command in Linux is used to change the permissions...
🌐
MakeUseOf
makeuseof.com › home › linux › how to read and execute from a file with the linux source command
How to Read and Execute From a File With the Linux source Command
September 23, 2022 - To test it out, write the commands in the code box above in a new file and use the source command instead of making it executable. # Create a new file and edit it vi test file . test_file echo $TEST # This will return "bed" As you can see, using the source command, you were able to update the environment variables of the parent process. This is the primary use case of the source command, i.e., to modify the parent environment. ... That's all the steps you need to update the Bash shell environment with the source command. The difference between Linux bash and source commands is that when you execute a script with the bash command, it tells the Linux kernel to create a new Bash process to read and execute the script, copy the output to the original shell process, and display it.
🌐
LinuxVox
linuxvox.com › blog › execute-a-file-in-linux
Executing Files in Linux: A Comprehensive Guide — linuxvox.com
If the file is located in one of the directories listed in the PATH environment variable, you can execute it without specifying the full path. # Check the PATH variable echo $PATH # For example, if /usr/local/bin is in the PATH and your script is there # You can directly run the script test_script · Using #!/usr/bin/env interpreter in the shebang line is a good practice as it allows the system to find the interpreter in the PATH environment variable.
🌐
Vistarewired
vistarewired.com › home › run a file in linux: quick command guide
Run a File in Linux: Quick Command Guide - Vista Rewired
August 21, 2024 - You can do this by pressing Ctrl + Alt + T or finding ‘Terminal’ in your applications. Next, use the cd command to go to the file’s directory. Make sure the file can be executed by typing chmod +x filename.
🌐
Arch Linux Forums
bbs.archlinux.org › viewtopic.php
how do you execute a file from terminal? / Newbie Corner / Arch Linux Forums
July 17, 2009 - Not being able to run executable files in the same directory as you are in is a security measure. You can always do ./$executable as said before, or, if it's a script, call the interpreter to execute it: ... Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy
🌐
wikiHow
wikihow.tech › computers and electronics › internet › downloading › file sharing › how to run a file in unix: 3 steps (with pictures) - wikihow tech
How to Run a File in Unix: 3 Steps (with Pictures) - wikiHow Tech
December 23, 2024 - You can run a file in UNIX by invoking the file name from the command line. Alternatively, you can also choose to invoke a specific shell to run the file. ... Check that you have permission to run (or) execute the file.