Okay, so finally I solved this ! Steps : Open Script Editor app. Create new Script and paste this code :

on run argv
    tell application "Terminal" to activate
    tell application "Terminal" to do script "cd ~" in selected tab of the front window
    tell application "Terminal" to do script "cd " & item 2 of argv in selected tab of the front window
    tell application "Terminal" to do script "clear" in selected tab of the front window
    tell application "Terminal" to do script "bash " & item 1 of argv in selected tab of the front window
end run

save this file inside the folder in which you are coding/ or provide path while executing. This will look like this : I saved it in /Users/aayush/Downloads folder as automated_run. This script editor app will save this script as automated_run.scpt.

Now open CodeRunner App. Select Run Settings..., Now Copy the command written in Run Command field before the $filename. [For example, If I am coding in shell scripting then I will copy the bash from the command bash $filename; for python, I will copy python3 from python3 $filename] Then open the script editor and see the line number 6 and paste your command in place of "bash ". Here I am coding in shell scripting so that as per my requirement, I used 'bash ' here. Then in CodeRunner, Paste this code in place of run command in Run Setting... :

osascript automated_run.scpt $filename $PWD

It will look like this now : Now you have two options : you can make this run command as default or you can use this as temporary. That is your choice. now close this window. and run any sample program to check this functionality which we just implemented. Let's run sample program : I made a sample file named helloaayush.sh and stored that in /Users/aayush/Downloads

Now after pressing the Run button : A new terminal window will open and your code output will be visible there.

Let me know if something is unclear :)

Answer from Aayush Shah on Stack Overflow
๐ŸŒ
CodeRunner
coderunnerapp.com
CodeRunner โ€“ Programming Editor for macOS
Multiple Selections. CodeRunner 4's new editor supports fully context-independent multiple selections.
Releases
A lightweight, multi-language programming text editor and IDE for macOS.
Support
A lightweight, multi-language programming text editor and IDE for macOS.
Purchase
A lightweight, multi-language programming text editor and IDE for macOS.
๐ŸŒ
App Store
apps.apple.com โ€บ us โ€บ app โ€บ coderunner-4 โ€บ id955297617
CodeRunner 4 - App Store - Apple
CodeRunner 4 is a huge update with hundreds of new features and improvements, including: โ€ข Error Checking and Linting. Get instant feedback on your code as you write it. CodeRunner checks your document for errors and common issues, underlining ...
Rating: 0 โ€‹
Discussions

macos - CodeRunner 4.0.3 (Mac software) - how to execute program in Terminal window? - Stack Overflow
I use CodeRunner on Mac which is a programming IDE for multiple programming languages, not Code Runner vor Visual Studio! When I execute a program, inputs and outputs will be shown inside of this I... More on stackoverflow.com
๐ŸŒ stackoverflow.com
What do you think of CodeRunner IDE ?
What are you planning on using it for? I've used it. It works ok for some things. I've had PHP version and debugging issues in the past, but haven't tried it lately (not working in PHP right now). The biggest limitation was the lack of remote debugging on our server. Visual Studio was the only IDE that could do that easily. More on reddit.com
๐ŸŒ r/macprogramming
11
5
March 31, 2020
CodeRunner: Arduino and CodeRunner
by Richard Lobb - Sunday, 25 November 2018, 4:04 PM Number of replies: 22 ยท A correspondent asks: "I am a middle school teacher. I teach my students to program Arduinos. How hard would it be to add the Arduino programming language to Code Runner?" More on coderunner.org.nz
๐ŸŒ coderunner.org.nz
What does the extension Code Runner do?

It just runs the code. You still have to install the relevant compiler/interpreter for the language you're trying to run and set it up correctly in your settings.json so Code Runner can use the correct command.

More on reddit.com
๐ŸŒ r/vscode
10
13
May 26, 2021
People also ask

What features does CodeRunner 4 offer?
CodeRunner 4 offers debugging with breakpoints, live error checking, a customizable text editor, built-in documentation, code templates, and support for multiple programming languages. You can contact our product experts for more information.
๐ŸŒ
techjockey.com
techjockey.com โ€บ business software โ€บ website development tools โ€บ text editor software โ€บ coderunner 4
Coderunner 4 Pricing & Reviews 2026 | Techjockey.com
How secure is CodeRunner 4?
As a locally installed application, CodeRunner 4's security is closely tied to your MacOS system's security settings and practices. It's crucial to ensure that your MacOS system has the latest security updates and that you're using strong passwords and antivirus software. By maintaining a secure MacOS environment, you can mitigate potential security risks associated with using CodeRunner 4.
๐ŸŒ
techjockey.com
techjockey.com โ€บ business software โ€บ website development tools โ€บ text editor software โ€บ coderunner 4
Coderunner 4 Pricing & Reviews 2026 | Techjockey.com
How does CodeRunner 4 software Work?
CodeRunner 4 acts as a code editor, serving as your digital workspace for creating and executing code. It supports a variety of programming languages, allowing you to write code in the language that suits your project. CodeRunner 4 includes debugging tools to help you find and fix errors in your code, making it easier to identify and resolve any problems.
๐ŸŒ
techjockey.com
techjockey.com โ€บ business software โ€บ website development tools โ€บ text editor software โ€บ coderunner 4
Coderunner 4 Pricing & Reviews 2026 | Techjockey.com
๐ŸŒ
PcMac Store
pcmacstore.com โ€บ en โ€บ software โ€บ 955297617 โ€บ coderunner-4
CodeRunner 4 for Windows Pc & Mac: Free Download (2023) | Pcmacstore.com
July 7, 2024 - What is CodeRunner 4? CodeRunner is a lightweight and easy-to-use app designed exclusively for macOS that allows users to write, run, and debug code quickly in any programming language.
๐ŸŒ
App Store
apps.apple.com โ€บ us โ€บ app โ€บ coderunner-4 โ€บ id955297617
CodeRunner 4 App - App Store
CodeRunner 4 is a huge update with hundreds of new features and improvements, including: โ€ข Error Checking and Linting. Get instant feedback on your code as you write it. CodeRunner checks your document for errors and common issues, underlining ...
Rating: 0 โ€‹
Top answer
1 of 1
1

Okay, so finally I solved this ! Steps : Open Script Editor app. Create new Script and paste this code :

on run argv
    tell application "Terminal" to activate
    tell application "Terminal" to do script "cd ~" in selected tab of the front window
    tell application "Terminal" to do script "cd " & item 2 of argv in selected tab of the front window
    tell application "Terminal" to do script "clear" in selected tab of the front window
    tell application "Terminal" to do script "bash " & item 1 of argv in selected tab of the front window
end run

save this file inside the folder in which you are coding/ or provide path while executing. This will look like this : I saved it in /Users/aayush/Downloads folder as automated_run. This script editor app will save this script as automated_run.scpt.

Now open CodeRunner App. Select Run Settings..., Now Copy the command written in Run Command field before the $filename. [For example, If I am coding in shell scripting then I will copy the bash from the command bash $filename; for python, I will copy python3 from python3 $filename] Then open the script editor and see the line number 6 and paste your command in place of "bash ". Here I am coding in shell scripting so that as per my requirement, I used 'bash ' here. Then in CodeRunner, Paste this code in place of run command in Run Setting... :

osascript automated_run.scpt $filename $PWD

It will look like this now : Now you have two options : you can make this run command as default or you can use this as temporary. That is your choice. now close this window. and run any sample program to check this functionality which we just implemented. Let's run sample program : I made a sample file named helloaayush.sh and stored that in /Users/aayush/Downloads

Now after pressing the Run button : A new terminal window will open and your code output will be visible there.

Let me know if something is unclear :)

๐ŸŒ
CodeRunner
coderunnerapp.com โ€บ blog
CodeRunner Releases
September 16, 2025 - Multiple Selections. CodeRunner 4's new editor supports fully context-independent multiple selections.
Find elsewhere
๐ŸŒ
CodeRunner
coderunner.org.nz
CodeRunner
The ace-inline filter is a Moodle plugin that works with CodeRunner versions 4.2.3 or later to allow teachers to embed executable code anywhere in Moodle content pages. The code is editable, using the Ace editor, and there is a Try it!
๐ŸŒ
Techjockey
techjockey.com โ€บ business software โ€บ website development tools โ€บ text editor software โ€บ coderunner 4
Coderunner 4 Pricing & Reviews 2026 | Techjockey.com
A CodeRunner 4 acts as a code editor, serving as your digital workspace for creating and executing code. It supports a variety of programming languages, allowing you to write code in the language that suits your project.
Published ย  May 26, 2021
๐ŸŒ
Haxmac
haxmac.cc โ€บ home โ€บ coderunner 4.4.1 cracked for macos
CodeRunner 4.4.1 Cracked for macOS
January 27, 2025 - you need to also download radio silence applicatation an add the code runner to it so that it dont ask for signup again as it blocks the connection.
๐ŸŒ
Macupdate
coderunner.macupdate.com โ€บ developer tools โ€บ ide software
Download CodeRunner for Mac | MacUpdate
Download the latest version of CodeRunner for Mac for free. Read 21 user reviews and compare with similar apps on MacUpdate.
๐ŸŒ
Setapp
setapp.com โ€บ apps โ€บ coderunner
CodeRunner โ€” Download Mac app on Setapp | Lightweight code editor for Mac | Setapp
Configure CodeRunner to work exactly how you want. Donโ€™t like auto-closing of brackets, indenting of new lines, or syntax highlighting? Simply toggle them off in the preference editor. Is auto-complete getting in the way of your custom functions? Switch it off temporarily while you work.
Rating: 96/100 โ€‹ - โ€‹ 1.27K votes
๐ŸŒ
Visual Studio Marketplace
marketplace.visualstudio.com โ€บ items
Code Runner - Visual Studio Marketplace
Extension for Visual Studio Code - Run C, C++, Java, JS, PHP, Python, Perl, Ruby, Go, Lua, Groovy, PowerShell, CMD, BASH, F#, C#, VBScript, TypeScript, CoffeeScript, Scala, Swift, Julia, Crystal, OCaml, R, AppleScript, Elixir, VB.NET, Clojure, ...
๐ŸŒ
G2
g2.com โ€บ products โ€บ coderunner โ€บ reviews
CodeRunner Reviews 2026: Details, Pricing, & Features | G2
For developers code runner offers a simple and efficient platform to write test debug code in various languages without the need for heavyweight ide . It provides a lightweight alternatives for quick cosing tasks or experimentation.
๐ŸŒ
Google Play
play.google.com โ€บ store โ€บ apps โ€บ details
Code Runner App Compiler & IDE - Apps on Google Play
Run C,C++,Java,C#,Swift,Python,Node JS,Ruby,Lua,SQL,PHP,Go,Rust code on the go!
Rating: 4.1 โ€‹ - โ€‹ 790 votes
๐ŸŒ
CodeRunner
coderunner.org.nz โ€บ mod โ€บ forum โ€บ discuss.php
CodeRunner: Arduino and CodeRunner
questions-AkRobotNerd-CodeRunner Experiments-20200209-2249.xml ... Yes, writing the template in C is problematic with the gap-filler UI. Twig unfortunately doesn't have a json decode filter. In your C Loop 0-4 example, there is a hacky solution.
๐ŸŒ
Softpedia
mac.softpedia.com โ€บ developer tools โ€บ coderunner
CodeRunner - Download (Mac) - Softpedia
Download CodeRunner 4.5 for Mac - A versatile and lightweight macOS programming tool for editing and running code in any programming languages installed on your Mac's system
๐ŸŒ
Krillapps
krillapps.com
krillapps โ€” macOS apps by Nikolai Krill
CodeRunner is the easiest way to write code on your Mac. You can run code in almost any language instantly, and you'll be surprised by the powerful set of features in such a lightweight and easy-to-use editor. Read more at coderunnerapp.com ยท Patterns is the ultimate tool for working with ...